mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 20:30:28 +02:00
* eval.c (scm_m_lambda): Let bodycheck check the body of the
lambda. Let your sins be purified by the blood of the lambda. (Thanks to Eric Hanchrow.)
This commit is contained in:
parent
a122f2f9ea
commit
ae904cfae3
1 changed files with 1 additions and 1 deletions
|
@ -653,7 +653,7 @@ scm_m_lambda (xorig, env)
|
||||||
SCM env;
|
SCM env;
|
||||||
{
|
{
|
||||||
SCM proc, x = SCM_CDR (xorig);
|
SCM proc, x = SCM_CDR (xorig);
|
||||||
if (scm_ilength (x) < 2)
|
if (scm_ilength (x) < 1)
|
||||||
goto badforms;
|
goto badforms;
|
||||||
proc = SCM_CAR (x);
|
proc = SCM_CAR (x);
|
||||||
if (SCM_NULLP (proc))
|
if (SCM_NULLP (proc))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue