diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-07-13 05:31:35 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-07-13 05:31:35 +0000 |
commit | 856163dbe8bdff05044ae80c11f09438b813afc1 (patch) | |
tree | 4172eed56d153a013d5842d1646ad658e3430221 | |
parent | 2a7a50eaea867625fbe46e80fce41983f6ad2fc2 (diff) | |
download | emacs-856163dbe8bdff05044ae80c11f09438b813afc1.tar.gz |
(Feval, Ffuncall): Use gc_cons_combined_threshold.
-rw-r--r-- | src/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index 45effae295c..3b4e9fe0324 100644 --- a/src/eval.c +++ b/src/eval.c @@ -2093,7 +2093,7 @@ DEFUN ("eval", Feval, Seval, 1, 1, 0, return form; QUIT; - if (consing_since_gc > gc_cons_threshold) + if (consing_since_gc > gc_cons_combined_threshold) { GCPRO1 (form); Fgarbage_collect (); @@ -2793,7 +2793,7 @@ usage: (funcall FUNCTION &rest ARGUMENTS) */) register int i; QUIT; - if (consing_since_gc > gc_cons_threshold) + if (consing_since_gc > gc_cons_combined_threshold) Fgarbage_collect (); if (++lisp_eval_depth > max_lisp_eval_depth) |