diff src/bytecode.c @ 90201:fbb2bea03df9

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-69 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 474-484) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 88-91) - Merge from emacs--cvs-trunk--0 - Update FSF's address in GPL notices - Update from CVS
author Miles Bader <miles@gnu.org>
date Thu, 14 Jul 2005 08:02:00 +0000
parents f9a65d7ebd29 64b32564144f
children 890cc78a5a24
line wrap: on
line diff
--- a/src/bytecode.c	Thu Jul 07 12:43:14 2005 +0000
+++ b/src/bytecode.c	Thu Jul 14 08:02:00 2005 +0000
@@ -355,13 +355,13 @@
 /* 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.  */