summaryrefslogtreecommitdiff
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-07-13 05:29:10 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-07-13 05:29:10 +0000
commit642cd12be9a51258f6dc1457451ec7bfd61b6899 (patch)
treebbd97d1aa3f4f5827df9964a5a21c670e9ee132b /src/bytecode.c
parent96f077ad7141a3900c623d485cd9a31f6d67acf7 (diff)
downloademacs-642cd12be9a51258f6dc1457451ec7bfd61b6899.tar.gz
(MAYBE_GC): Use gc_cons_combined_threshold.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 73b8f60a1a8..ee89e9e8d7b 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -355,13 +355,13 @@ unmark_byte_stack ()
/* Garbage collect if we have consed enough since the last time.
We do this at every branch, to avoid loops that never GC. */
-#define MAYBE_GC() \
- if (consing_since_gc > gc_cons_threshold) \
- { \
- BEFORE_POTENTIAL_GC (); \
- Fgarbage_collect (); \
- AFTER_POTENTIAL_GC (); \
- } \
+#define MAYBE_GC() \
+ if (consing_since_gc > gc_cons_combined_threshold) \
+ { \
+ BEFORE_POTENTIAL_GC (); \
+ Fgarbage_collect (); \
+ AFTER_POTENTIAL_GC (); \
+ } \
else
/* Check for jumping out of range. */