diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-10-05 16:49:31 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-10-05 16:49:31 +0000 |
commit | 1646d37b71a88e2f953a0bf7b22a5451009f9f00 (patch) | |
tree | f48d008229530be9220cc62a951f7b62f59c12a7 /libguile/continuations.c | |
parent | 02ba201059803306cf598ba4d08faa549b3578e3 (diff) | |
download | guile-1646d37b71a88e2f953a0bf7b22a5451009f9f00.tar.gz |
* continuations.c, debug.[ch], eval.c, gscm.c init.c, root.c,
throw.c: Renamed last_debug_info_frame -> scm_last_debug_frame.
Diffstat (limited to 'libguile/continuations.c')
-rw-r--r-- | libguile/continuations.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/continuations.c b/libguile/continuations.c index 521c09092..6acdb87a1 100644 --- a/libguile/continuations.c +++ b/libguile/continuations.c @@ -118,7 +118,7 @@ scm_make_cont (answer) *dst++ = *src++; #endif /* def CHEAP_CONTINUATIONS */ #ifdef DEBUG_EXTENSIONS - SCM_DFRAME (cont) = last_debug_info_frame; + SCM_DFRAME (cont) = scm_last_debug_frame; #endif return cont; } @@ -185,7 +185,7 @@ scm_dynthrow (a) #endif #endif /* ndef CHEAP_CONTINUATIONS */ #ifdef DEBUG_EXTENSIONS - last_debug_info_frame = SCM_DFRAME (cont); + scm_last_debug_frame = SCM_DFRAME (cont); #endif SCM_THROW_VALUE(cont) = val; longjmp (SCM_JMPBUF (cont), 1); |