]> git.eshelyaron.com Git - emacs.git/commitdiff
(MAYBE_GC): Use gc_cons_combined_threshold.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 13 Jul 2005 05:29:10 +0000 (05:29 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 13 Jul 2005 05:29:10 +0000 (05:29 +0000)
src/bytecode.c

index 73b8f60a1a8d01f52e6e91241f043109886bf40c..ee89e9e8d7b8e7d135754c06fce89044af72363b 100644 (file)
@@ -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.  */