[svn:parrot] r46186 - branches/codestring/src/pmc

coke at svn.parrot.org coke at svn.parrot.org
Fri Apr 30 06:54:41 UTC 2010


Author: coke
Date: Fri Apr 30 06:54:41 2010
New Revision: 46186
URL: https://trac.parrot.org/parrot/changeset/46186

Log:
fix comment oddity and bizarre in-situ assignment that must have been a cNpasto

Modified:
   branches/codestring/src/pmc/codestring.pmc

Modified: branches/codestring/src/pmc/codestring.pmc
==============================================================================
--- branches/codestring/src/pmc/codestring.pmc	Fri Apr 30 06:54:03 2010	(r46185)
+++ branches/codestring/src/pmc/codestring.pmc	Fri Apr 30 06:54:41 2010	(r46186)
@@ -139,9 +139,9 @@
             break;
         }
         else {
-            /* slurp up the to just before the % sign... */
+            /* slurp up to just before the % sign... */
             VTABLE_push_string(INTERP, strings,
-                key = Parrot_str_substr(INTERP, fmt, pos, percentPos - pos));
+                Parrot_str_substr(INTERP, fmt, pos, percentPos - pos));
             /* skip the % sign */
             pos = percentPos + 1 ;
         }


More information about the parrot-commits mailing list