changeset 64270:291a233cbda9

(read_char): Use gc_cons_combined_threshold.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 13 Jul 2005 05:30:56 +0000
parents 2b2ad7fa1865
children 66b8e5d68b93
files src/keyboard.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Wed Jul 13 05:30:04 2005 +0000
+++ b/src/keyboard.c	Wed Jul 13 05:30:56 2005 +0000
@@ -2778,7 +2778,7 @@
 		 available, garbage collect if there has been enough
 		 consing going on to make it worthwhile.  */
 	      if (!detect_input_pending_run_timers (0)
-		  && consing_since_gc > gc_cons_threshold / 2)
+		  && consing_since_gc > gc_cons_combined_threshold / 2)
 		Fgarbage_collect ();
 
 	      redisplay ();