Treat \r as a space.
This commit is contained in:
parent
7d112a394c
commit
56b0eb81c1
|
@ -572,6 +572,7 @@ int yylex(void)
|
|||
/* handle double operators */
|
||||
case ' ':
|
||||
case '\t':
|
||||
case '\r':
|
||||
cptr++;
|
||||
return(yylex());
|
||||
case '&':
|
||||
|
|
|
@ -43,6 +43,7 @@ cprogram {
|
|||
"./symbols.h",
|
||||
"./util.h",
|
||||
"./yylexp.h",
|
||||
"./basic.lex",
|
||||
"+llgen",
|
||||
"+tokentab_h",
|
||||
"h+emheaders",
|
||||
|
|
Loading…
Reference in a new issue