diff options
author | Marius Vollmer <mvo@zagadka.de> | 2005-03-10 18:42:11 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2005-03-10 18:42:11 +0000 |
commit | fd20058d7467c89ab4767795775ce846d5ae7bb5 (patch) | |
tree | 64773b3ff028090896e4956aa8f2c806a08747b2 /libguile/gdbint.c | |
parent | b17e0ac397fbab715704464f35a91745c55e0a1c (diff) | |
download | guile-fd20058d7467c89ab4767795775ce846d5ae7bb5.tar.gz |
(SCM_BEGIN_FOREIGN_BLOCK, SCM_END_FOREIGN_BLOCK): Do not set
scm_block_gc.
Diffstat (limited to 'libguile/gdbint.c')
-rw-r--r-- | libguile/gdbint.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libguile/gdbint.c b/libguile/gdbint.c index 0a31bf34d..baddfc41d 100644 --- a/libguile/gdbint.c +++ b/libguile/gdbint.c @@ -66,7 +66,6 @@ */ #define SCM_BEGIN_FOREIGN_BLOCK \ do { \ - old_gc = scm_block_gc; scm_block_gc = 1; \ scm_print_carefully_p = 1; \ } while (0) @@ -74,7 +73,6 @@ do { \ #define SCM_END_FOREIGN_BLOCK \ do { \ scm_print_carefully_p = 0; \ - scm_block_gc = old_gc; \ } while (0) @@ -109,7 +107,6 @@ static SCM tok_buf; static int tok_buf_mark_p; static SCM gdb_output_port; -static int old_gc; static void |