1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

* eval.c (unmemocopy): Bugfix: scm_sym_delay --> scm_sym_future.

This commit is contained in:
Mikael Djurfeldt 2002-12-29 09:54:26 +00:00
parent 14a9ba3f2c
commit ebf9b47c8b
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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)):