- Timestamp:
- 02/02/17 15:15:26 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/framscript.y
r538 r652 458 458 if (!$1.ident) 459 459 { 460 trctx.err->printf("for(... in ...) requires a nvariable\n");460 trctx.err->printf("for(... in ...) requires a variable\n"); 461 461 return 1; 462 462 } … … 470 470 else if (globalOk($1)) 471 471 { 472 trctx.err->printf("global '%s' can't be iterating variable in for\n",str($1));472 trctx.err->printf("global '%s' can't be the iterating variable in 'for'\n",str($1)); 473 473 return 1; 474 474 }
Note: See TracChangeset
for help on using the changeset viewer.