isdigit (Tom Miller)
This commit is contained in:
parent
24d5692977
commit
604ad4d8ff
7 changed files with 10 additions and 7 deletions
|
|
@ -248,7 +248,7 @@ WS [ \t]
|
|||
pbstr(p->s_val.p);
|
||||
dprintf("pushing back `%s'\n", p->s_val.p);
|
||||
}
|
||||
} else if (islower(yytext[0])) {
|
||||
} else if (islower((unsigned char)yytext[0])) {
|
||||
yylval.p = tostring(yytext);
|
||||
return(VARNAME);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue