diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-11-22 15:36:58 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-11-22 15:36:58 +0000 |
commit | d7cf43257826796a0503e33b162cb7424a65bdc4 (patch) | |
tree | d9ea95d3b749bec4c4edf06f990683d7f6e3a09a /libguile/continuations.c | |
parent | bc0eaf7b78140d9215d2ae7b88ca93000145e4a3 (diff) | |
download | guile-d7cf43257826796a0503e33b162cb7424a65bdc4.tar.gz |
* Added SCM_SET_CONTINUATION_LENGTH to replace SCM_SETLENGTH.
Diffstat (limited to 'libguile/continuations.c')
-rw-r--r-- | libguile/continuations.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/continuations.c b/libguile/continuations.c index 2a3780074..ca647b154 100644 --- a/libguile/continuations.c +++ b/libguile/continuations.c @@ -89,7 +89,7 @@ scm_make_cont (SCM *answer) SCM_THROW_VALUE (cont) = SCM_EOL; src = SCM_BASE (cont) = SCM_BASE (scm_rootcont); SCM_SEQ (cont) = SCM_SEQ (scm_rootcont); - SCM_SETLENGTH (cont, j, scm_tc7_contin); + SCM_SET_CONTINUATION_LENGTH (cont, j); SCM_EXIT_A_SECTION; #ifndef SCM_STACK_GROWS_UP src -= SCM_CONTINUATION_LENGTH (cont); |