/[svn]/linuxsampler/trunk/src/scriptvm/scanner.l
ViewVC logotype

Diff of /linuxsampler/trunk/src/scriptvm/scanner.l

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3556 by schoenebeck, Sat Jul 15 01:14:20 2017 UTC revision 3557 by schoenebeck, Sun Aug 18 00:06:04 2019 UTC
# Line 119  ID       [a-zA-Z0-9_]+ Line 119  ID       [a-zA-Z0-9_]+
119  }  }
120    
121  {DIGIT}+ {  {DIGIT}+ {
122      yylval->iValue = atoi(yytext);      if (sizeof(vmint) < 8)
123            yylval->iValue = atoi(yytext);
124        else
125            yylval->iValue = atoll(yytext);
126      return INTEGER;      return INTEGER;
127  }  }
128    

Legend:
Removed from v.3556  
changed lines
  Added in v.3557

  ViewVC Help
Powered by ViewVC