Changeset 652 for cpp/frams


Ignore:
Timestamp:
02/02/17 15:15:26 (7 years ago)
Author:
Maciej Komosinski
Message:

Cosmetic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/vm/framscript.y

    r538 r652  
    458458           if (!$1.ident)
    459459                   {
    460                    trctx.err->printf("for(... in ...) requires an variable\n");
     460                   trctx.err->printf("for(... in ...) requires a variable\n");
    461461                   return 1;
    462462                   }
     
    470470                   else if (globalOk($1))
    471471                           {
    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));
    473473                           return 1;
    474474                           }
Note: See TracChangeset for help on using the changeset viewer.