[svn:parrot] r48617 - trunk/src/string

NotFound at svn.parrot.org NotFound at svn.parrot.org
Tue Aug 24 07:35:56 UTC 2010


Author: NotFound
Date: Tue Aug 24 07:35:55 2010
New Revision: 48617
URL: https://trac.parrot.org/parrot/changeset/48617

Log:
fix silly mistake with the escape code

Modified:
   trunk/src/string/api.c

Modified: trunk/src/string/api.c
==============================================================================
--- trunk/src/string/api.c	Mon Aug 23 23:01:33 2010	(r48616)
+++ trunk/src/string/api.c	Tue Aug 24 07:35:55 2010	(r48617)
@@ -2677,7 +2677,7 @@
                 case 'v': next = '\v'; break;
                 case 'f': next = '\f'; break;
                 case 'r': next = '\r'; break;
-                case 'e': next = '\x27'; break;
+                case 'e': next = '\x1B'; break;
                 /* Escape character */
                 case 'c':
                     c = STRING_ITER_GET_AND_ADVANCE(interp, src, &itersrc);


More information about the parrot-commits mailing list