Change 34416 by [EMAIL PROTECTED] on 2008/09/25 11:55:49

        pv_uni_display () omitted backslash in output string

Affected files ...

... //depot/perl/utf8.c#311 edit

Differences ...

==== //depot/perl/utf8.c#311 (text) ====
Index: perl/utf8.c
--- perl/utf8.c#310~33291~      2008-02-12 05:15:20.000000000 -0800
+++ perl/utf8.c 2008-09-25 04:55:49.000000000 -0700
@@ -2288,6 +2288,7 @@
                 }
                 if (ok) {
                     const char string = ok;
+                    sv_catpvn(dsv, "\\",    1);
                     sv_catpvn(dsv, &string, 1);
                 }
             }
End of Patch.

Reply via email to