aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorStefan Monnier2005-07-13 05:29:10 +0000
committerStefan Monnier2005-07-13 05:29:10 +0000
commit642cd12be9a51258f6dc1457451ec7bfd61b6899 (patch)
treebbd97d1aa3f4f5827df9964a5a21c670e9ee132b /src/bytecode.c
parent96f077ad7141a3900c623d485cd9a31f6d67acf7 (diff)
downloademacs-642cd12be9a51258f6dc1457451ec7bfd61b6899.tar.gz
emacs-642cd12be9a51258f6dc1457451ec7bfd61b6899.zip
(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 ()
355/* Garbage collect if we have consed enough since the last time. 355/* Garbage collect if we have consed enough since the last time.
356 We do this at every branch, to avoid loops that never GC. */ 356 We do this at every branch, to avoid loops that never GC. */
357 357
358#define MAYBE_GC() \ 358#define MAYBE_GC() \
359 if (consing_since_gc > gc_cons_threshold) \ 359 if (consing_since_gc > gc_cons_combined_threshold) \
360 { \ 360 { \
361 BEFORE_POTENTIAL_GC (); \ 361 BEFORE_POTENTIAL_GC (); \
362 Fgarbage_collect (); \ 362 Fgarbage_collect (); \
363 AFTER_POTENTIAL_GC (); \ 363 AFTER_POTENTIAL_GC (); \
364 } \ 364 } \
365 else 365 else
366 366
367/* Check for jumping out of range. */ 367/* Check for jumping out of range. */