From: Stefan Monnier Date: Wed, 13 Jul 2005 05:30:56 +0000 (+0000) Subject: (read_char): Use gc_cons_combined_threshold. X-Git-Tag: emacs-pretest-22.0.90~8195 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a7a50eaea867625fbe46e80fce41983f6ad2fc2;p=emacs.git (read_char): Use gc_cons_combined_threshold. --- diff --git a/src/keyboard.c b/src/keyboard.c index e0db002ea94..b854d423cd1 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2778,7 +2778,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) 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 ();