mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-06 02:40:26 -08:00
Use isdigit() instead of isnumber()
This commit is contained in:
parent
acc3404d71
commit
eb8a59107f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 = '_';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue