From: Nicholas Clark Date: Thu, 9 Mar 2006 19:00:26 +0000 (+0000) Subject: Another refactoring from Larry implicit in the MAD patch. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6f43d98f55a6395af0dd4821c9ea30d53bab4dfd;p=p5sagit%2Fp5-mst-13.2.git Another refactoring from Larry implicit in the MAD patch. p4raw-id: //depot/perl@27444 --- diff --git a/toke.c b/toke.c index f69f28a..4342c11 100644 --- a/toke.c +++ b/toke.c @@ -9769,9 +9769,9 @@ S_scan_subst(pTHX_ char *start) pm->op_pmflags |= PMf_EVAL; while (es-- > 0) sv_catpv(repl, es ? "eval " : "do "); - sv_catpvs(repl, "{ "); + sv_catpvs(repl, "{"); sv_catsv(repl, PL_lex_repl); - sv_catpvs(repl, " }"); + sv_catpvs(repl, "}"); SvEVALED_on(repl); SvREFCNT_dec(PL_lex_repl); PL_lex_repl = repl;