mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 05:43:19 -08:00
Trivial typo in ecl_boundp().
This commit is contained in:
parent
ec9727f9f5
commit
f0a022acdf
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ ecl_boundp(cl_env_ptr env, cl_object sym)
|
|||
} else {
|
||||
if (!SYMBOLP(sym))
|
||||
FEtype_error_symbol(sym);
|
||||
return ECL_SYM_VAL(the_env, sym) != OBJNULL;
|
||||
return ECL_SYM_VAL(env, sym) != OBJNULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue