summaryrefslogtreecommitdiff
path: root/src/eval.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-07-13 05:31:35 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-07-13 05:31:35 +0000
commit856163dbe8bdff05044ae80c11f09438b813afc1 (patch)
tree4172eed56d153a013d5842d1646ad658e3430221 /src/eval.c
parent2a7a50eaea867625fbe46e80fce41983f6ad2fc2 (diff)
downloademacs-856163dbe8bdff05044ae80c11f09438b813afc1.tar.gz
(Feval, Ffuncall): Use gc_cons_combined_threshold.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c4
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)