mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* eval.c (unmemocopy): Bugfix: scm_sym_delay --> scm_sym_future.
This commit is contained in:
parent
14a9ba3f2c
commit
ebf9b47c8b
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2002-12-29 Mikael Djurfeldt <djurfeldt@nada.kth.se>
|
||||||
|
|
||||||
|
* eval.c (unmemocopy): Bugfix: scm_sym_delay --> scm_sym_future.
|
||||||
|
|
||||||
2002-12-29 Neil Jerram <neil@ossau.uklinux.net>
|
2002-12-29 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
* lang.h: Remove declarations matching definitions removed from
|
* lang.h: Remove declarations matching definitions removed from
|
||||||
|
|
|
@ -1491,7 +1491,7 @@ unmemocopy (SCM x, SCM env)
|
||||||
x = SCM_CDR (x);
|
x = SCM_CDR (x);
|
||||||
goto loop;
|
goto loop;
|
||||||
case (SCM_ISYMNUM (SCM_IM_FUTURE)):
|
case (SCM_ISYMNUM (SCM_IM_FUTURE)):
|
||||||
ls = z = scm_cons (scm_sym_delay, SCM_UNSPECIFIED);
|
ls = z = scm_cons (scm_sym_future, SCM_UNSPECIFIED);
|
||||||
x = SCM_CDR (x);
|
x = SCM_CDR (x);
|
||||||
goto loop;
|
goto loop;
|
||||||
case (SCM_ISYMNUM (SCM_IM_CALL_WITH_VALUES)):
|
case (SCM_ISYMNUM (SCM_IM_CALL_WITH_VALUES)):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue