mirror of
git://git.suckless.org/sbase
synced 2026-01-26 13:43:17 +00:00
bc: Fix typo
This commit is contained in:
parent
02db7b173a
commit
74096de403
2
bc.y
2
bc.y
@ -593,7 +593,7 @@ iden(int ch)
|
|||||||
ungetc(ch, filep);
|
ungetc(ch, filep);
|
||||||
for (bp = yytext; bp < &yytext[BUFSIZ]; ++bp) {
|
for (bp = yytext; bp < &yytext[BUFSIZ]; ++bp) {
|
||||||
ch = getc(filep);
|
ch = getc(filep);
|
||||||
if (!isascii || !islower(ch))
|
if (!isascii(ch) || !islower(ch))
|
||||||
break;
|
break;
|
||||||
*bp = ch;
|
*bp = ch;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user