mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-25 14:01:07 -08:00
make potential_number_p thread-safe. Closes #406
This commit is contained in:
parent
7365d59407
commit
82dbd0ea1f
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ static bool
|
|||
potential_number_p(cl_object s, int base)
|
||||
{
|
||||
/* See ANSI 2.3.1.1 */
|
||||
static cl_index i, l;
|
||||
cl_index i, l;
|
||||
ecl_character c;
|
||||
/* A potential number must contain at least one digit */
|
||||
bool some_digit = FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue