*** empty log message ***

This commit is contained in:
Eric Smith 2000-11-21 02:16:32 +00:00
parent 6a3e99a8db
commit 183516d160
1 changed files with 2 additions and 0 deletions

2
lex.l
View File

@ -28,6 +28,8 @@ alphanum [0-9a-zA-Z_]
\.[Rr][Tt][Ss][Tt][Aa][Bb] { return TRTSTAB; }
\.[Jj][Tt][Aa][Bb]2 { return TJTAB2; }
{digit}+ {
(void)sscanf(yytext, "%d", &token.ival);
return NUMBER;