mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* debug.c (scm_mem_to_proc): Fixed typo in previous change.
This commit is contained in:
parent
68665a9708
commit
aa5e5d63eb
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ SCM_DEFINE (scm_mem_to_proc, "mem->proc", 1, 0, 0,
|
|||
SCM_VALIDATE_MEMOIZED (1,obj);
|
||||
env = SCM_MEMOIZED_ENV (obj);
|
||||
obj = SCM_MEMOIZED_EXP (obj);
|
||||
if (!SCM_CONSP (obj) || !SCM_EQ_P (CAR (obj), SCM_IM_LAMBDA))
|
||||
if (!SCM_CONSP (obj) || !SCM_EQ_P (SCM_CAR (obj), SCM_IM_LAMBDA))
|
||||
SCM_MISC_ERROR ("expected lambda expression", scm_list_1 (obj));
|
||||
return scm_closure (SCM_CDR (obj), env);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue