diff options
author | Gisle Aas <gisle@activestate.com> | 2006-01-04 12:35:45 +0000 |
---|---|---|
committer | Gisle Aas <gisle@activestate.com> | 2006-01-04 12:35:45 +0000 |
commit | bd5fcaa6efcc067647598367721b802e1f87eaa2 (patch) | |
tree | fa892f7be249a6e8bf1be7adf570545353169a5c | |
parent | f78c7704ed20cad5f6c8fa7cb8bf8fa75bcb0074 (diff) | |
download | perl-bd5fcaa6efcc067647598367721b802e1f87eaa2.tar.gz |
Removed unused part of string passed to sv_catpvn().
p4raw-id: //depot/perl@26640
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9629,7 +9629,7 @@ S_scan_subst(pTHX_ char *start) sv_catpv(repl, es ? "eval " : "do "); sv_catpvn(repl, "{ ", 2); sv_catsv(repl, PL_lex_repl); - sv_catpvn(repl, " };", 2); + sv_catpvn(repl, " }", 2); SvEVALED_on(repl); SvREFCNT_dec(PL_lex_repl); PL_lex_repl = repl; |