Use isdigit() instead of isnumber()

This commit is contained in:
jjgarcia 2001-07-23 10:20:07 +00:00
parent acc3404d71
commit eb8a59107f

View file

@ -376,7 +376,7 @@ const struct symbol_info all_symbols[] = {
c = *(source++);
if (isalpha(c))
c = tolower(c);
else if (isnumber(c))
else if (isdigit(c))
;
else if (c == '-' || c == '_') {
c = '_';