Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/lex.ll

    r4e9c7c1 r72457b6  
    1010 * Created On       : Sat Sep 22 08:58:10 2001
    1111 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Thu Jul 27 21:46:06 2017
    13  * Update Count     : 550
     12 * Last Modified On : Mon Jul 24 08:27:23 2017
     13 * Update Count     : 545
    1414 */
    1515
    1616%option yylineno
    17 %option noyywrap
    1817%option nounput
    1918
     
    289288
    290289                                /* numeric constants */
     290"0"                             { NUMERIC_RETURN(ZERO); }                               // CFA
     291"1"                             { NUMERIC_RETURN(ONE); }                                // CFA
    291292{decimal_constant} { NUMERIC_RETURN(INTEGERconstant); }
    292293{octal_constant} { NUMERIC_RETURN(INTEGERconstant); }
     
    419420
    420421                                /* unknown characters */
    421 .                               { printf("unknown character(s):\"%s\" on line %d\n", yytext, yylineno); }
     422.                       { printf("unknown character(s):\"%s\" on line %d\n", yytext, yylineno); }
    422423
    423424%%
Note: See TracChangeset for help on using the changeset viewer.