Change 27444 by [EMAIL PROTECTED] on 2006/03/09 19:00:26

        Another refactoring from Larry implicit in the MAD patch.

Affected files ...

... //depot/perl/toke.c#654 edit

Differences ...

==== //depot/perl/toke.c#654 (text) ====
Index: perl/toke.c
--- perl/toke.c#653~27443~      2006-03-09 10:08:52.000000000 -0800
+++ perl/toke.c 2006-03-09 11:00:26.000000000 -0800
@@ -9769,9 +9769,9 @@
        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;
End of Patch.

Reply via email to