comparison src/eval.c @ 90385:72dea2ff0142

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-57 Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 226-238) - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/progmodes/python.el (python-mode): Fix typo. * gnus--rel--5.10 (patch 86-90) - Update from CVS - Merge from emacs--devo--0
author Miles Bader <miles@gnu.org>
date Fri, 21 Apr 2006 05:39:14 +0000
parents a802c5505156 e15a29aaffbd
children 138027c8c982
comparison
equal deleted inserted replaced
90384:c156f6a9e7b5 90385:72dea2ff0142
202 init_eval_once () 202 init_eval_once ()
203 { 203 {
204 specpdl_size = 50; 204 specpdl_size = 50;
205 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); 205 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
206 specpdl_ptr = specpdl; 206 specpdl_ptr = specpdl;
207 /* Don't forget to update docs (lispref node "Local Variables"). */
207 max_specpdl_size = 1000; 208 max_specpdl_size = 1000;
208 max_lisp_eval_depth = 300; 209 max_lisp_eval_depth = 300;
209 210
210 Vrun_hooks = Qnil; 211 Vrun_hooks = Qnil;
211 } 212 }