Index: emacs/src/eval.c
diff -c emacs/src/eval.c:1.249 emacs/src/eval.c:1.250
*** emacs/src/eval.c:1.249      Sat Jul  9 03:42:43 2005
--- emacs/src/eval.c    Wed Jul 13 05:31:35 2005
***************
*** 2093,2099 ****
      return form;
  
    QUIT;
!   if (consing_since_gc > gc_cons_threshold)
      {
        GCPRO1 (form);
        Fgarbage_collect ();
--- 2093,2099 ----
      return form;
  
    QUIT;
!   if (consing_since_gc > gc_cons_combined_threshold)
      {
        GCPRO1 (form);
        Fgarbage_collect ();
***************
*** 2793,2799 ****
    register int i;
  
    QUIT;
!   if (consing_since_gc > gc_cons_threshold)
      Fgarbage_collect ();
  
    if (++lisp_eval_depth > max_lisp_eval_depth)
--- 2793,2799 ----
    register int i;
  
    QUIT;
!   if (consing_since_gc > gc_cons_combined_threshold)
      Fgarbage_collect ();
  
    if (++lisp_eval_depth > max_lisp_eval_depth)


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to