aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorStefan Monnier2010-10-15 17:55:33 -0400
committerStefan Monnier2010-10-15 17:55:33 -0400
commit0c747cb143fa227e78f350ac353d703f489209df (patch)
tree5b434055c797bd75eaa1e3d9d0773e586d44daee /src/eval.c
parenta01a7932080e8a6e7bc8472c58cefabcc2c37df3 (diff)
parentaa095b2db98ae149737f8de00ee733b1d257ed33 (diff)
downloademacs-0c747cb143fa227e78f350ac353d703f489209df.tar.gz
emacs-0c747cb143fa227e78f350ac353d703f489209df.zip
Merge from trunk
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c
index 6383a672ae3..c07e7a37323 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -186,7 +186,7 @@ init_eval_once (void)
186 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); 186 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
187 specpdl_ptr = specpdl; 187 specpdl_ptr = specpdl;
188 /* Don't forget to update docs (lispref node "Local Variables"). */ 188 /* Don't forget to update docs (lispref node "Local Variables"). */
189 max_specpdl_size = 1000; 189 max_specpdl_size = 1200; /* 1000 is not enough for CEDET's c-by.el. */
190 max_lisp_eval_depth = 500; 190 max_lisp_eval_depth = 500;
191 191
192 Vrun_hooks = Qnil; 192 Vrun_hooks = Qnil;
@@ -3717,8 +3717,10 @@ Output stream used is value of `standard-output'. */)
3717 Lisp_Object tail; 3717 Lisp_Object tail;
3718 Lisp_Object tem; 3718 Lisp_Object tem;
3719 struct gcpro gcpro1; 3719 struct gcpro gcpro1;
3720 Lisp_Object old_print_level = Vprint_level;
3720 3721
3721 XSETFASTINT (Vprint_level, 3); 3722 if (NILP (Vprint_level))
3723 XSETFASTINT (Vprint_level, 8);
3722 3724
3723 tail = Qnil; 3725 tail = Qnil;
3724 GCPRO1 (tail); 3726 GCPRO1 (tail);
@@ -3759,7 +3761,7 @@ Output stream used is value of `standard-output'. */)
3759 backlist = backlist->next; 3761 backlist = backlist->next;
3760 } 3762 }
3761 3763
3762 Vprint_level = Qnil; 3764 Vprint_level = old_print_level;
3763 UNGCPRO; 3765 UNGCPRO;
3764 return Qnil; 3766 return Qnil;
3765} 3767}