Use isdigit() instead of isnumber()

This commit is contained in:
jjgarcia 2001-07-23 09:31:59 +00:00
parent 6cec11ba51
commit acc3404d71

View file

@ -217,7 +217,7 @@ read_name(int is_symbol)
do {
if (isalpha(c))
; /* c=tolower(c) */
else if (isnumber(c))
else if (isdigit(c))
;
else if (c == '-' || c == '_')
c = '_';