summaryrefslogtreecommitdiff
path: root/libguile/continuations.h
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2003-04-20 07:19:38 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2003-04-20 07:19:38 +0000
commitd0f6ceb84f26b033d6f1ac8bbc2acf81efc29f22 (patch)
tree049594205b5cdd419c32f06af43ec6c3382ef85c /libguile/continuations.h
parent1ac61c2b50fa64ffc7d9aa4558aecceb9f980640 (diff)
downloadguile-d0f6ceb84f26b033d6f1ac8bbc2acf81efc29f22.tar.gz
* Removed uses of DEBUG_EXTENSIONS and DYNAMIC_LINKING to
fix compile errors with --disable-deprecated.
Diffstat (limited to 'libguile/continuations.h')
-rw-r--r--libguile/continuations.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libguile/continuations.h b/libguile/continuations.h
index a3e06ae2f..002a28541 100644
--- a/libguile/continuations.h
+++ b/libguile/continuations.h
@@ -55,11 +55,10 @@ typedef struct
size_t num_stack_items; /* size of the saved stack. */
unsigned long seq; /* dynamic root identifier. */
-#ifdef DEBUG_EXTENSIONS
/* the most recently created debug frame on the live stack, before
it was saved. */
struct scm_t_debug_frame *dframe;
-#endif
+
SCM_STACKITEM stack[1]; /* copied stack of size num_stack_items. */
} scm_t_contregs;