aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/eval.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 4ee76ff531c..f5631c3979f 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -152,6 +152,8 @@ init_eval_once ()
152 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding)); 152 specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
153 max_specpdl_size = 600; 153 max_specpdl_size = 600;
154 max_lisp_eval_depth = 200; 154 max_lisp_eval_depth = 200;
155
156 Vrun_hooks = Qnil;
155} 157}
156 158
157init_eval () 159init_eval ()
@@ -2579,7 +2581,6 @@ If due to `eval' entry, one arg, t.");
2579 DEFVAR_LISP ("run-hooks", &Vrun_hooks, 2581 DEFVAR_LISP ("run-hooks", &Vrun_hooks,
2580 "Set to the function `run-hooks', if that function has been defined.\n\ 2582 "Set to the function `run-hooks', if that function has been defined.\n\
2581Otherwise, nil (in a bare Emacs without preloaded Lisp code)."); 2583Otherwise, nil (in a bare Emacs without preloaded Lisp code).");
2582 Vrun_hooks = Qnil;
2583 2584
2584 staticpro (&Vautoload_queue); 2585 staticpro (&Vautoload_queue);
2585 Vautoload_queue = Qnil; 2586 Vautoload_queue = Qnil;