[svn:parrot] r41303 - trunk/compilers/imcc
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Wed Sep 16 18:59:00 UTC 2009
Author: NotFound
Date: Wed Sep 16 18:58:59 2009
New Revision: 41303
URL: https://trac.parrot.org/parrot/changeset/41303
Log:
[cage] update imclexer.c with imcc.l codingstd fix
Modified:
trunk/compilers/imcc/imclexer.c
Modified: trunk/compilers/imcc/imclexer.c
==============================================================================
--- trunk/compilers/imcc/imclexer.c Wed Sep 16 18:24:30 2009 (r41302)
+++ trunk/compilers/imcc/imclexer.c Wed Sep 16 18:58:59 2009 (r41303)
@@ -3621,7 +3621,7 @@
char * const macro_name = mem_sys_strdup(yytext + 1);
int failed = expand_macro(interp, macro_name, yyscanner);
mem_sys_free(macro_name);
- if (! failed) {
+ if (! failed) {
yyless(1);
return DOT;
}
More information about the parrot-commits
mailing list