mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-24 02:21:04 -07:00
The interpreter only allowed LOAD-TIME-VALUE to take one argument.
This commit is contained in:
parent
ed7ab8cccc
commit
250a3d9caf
1 changed files with 1 additions and 1 deletions
|
|
@ -1606,7 +1606,7 @@ c_leta(cl_env_ptr env, cl_object args, int flags) {
|
|||
static int
|
||||
c_load_time_value(cl_env_ptr env, cl_object args, int flags)
|
||||
{
|
||||
if (cl_rest(args) != Cnil)
|
||||
if (cl_cddr(args) != Cnil)
|
||||
FEprogram_error_noreturn("LOAD-TIME-VALUE: Too many arguments.", 0);
|
||||
return c_values(env, args, flags);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue