# HG changeset patch # User Stefan Monnier # Date 1121232656 0 # Node ID 291a233cbda96dfe37e0f19bd235250f3fbc2383 # Parent 2b2ad7fa1865ad3577674a6edf19014992c7267c (read_char): Use gc_cons_combined_threshold. diff -r 2b2ad7fa1865 -r 291a233cbda9 src/keyboard.c --- 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 ();