aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-30 02:16:15 +0000
committerRichard M. Stallman1994-04-30 02:16:15 +0000
commitb5b911f995d9c92df4a7518bd7b06504889d82ed (patch)
tree4e4e95b0e8b33983cfc0b5b89c196bd05093ae2a /src
parent78c71a989daf70e8efd0dd64f1bd367e60ada05f (diff)
downloademacs-b5b911f995d9c92df4a7518bd7b06504889d82ed.tar.gz
emacs-b5b911f995d9c92df4a7518bd7b06504889d82ed.zip
(init_eval): Initialize when_entered_debugger to -1.
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 c826aa240cc..f53ce8ef651 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -163,7 +163,8 @@ init_eval ()
163 Vquit_flag = Qnil; 163 Vquit_flag = Qnil;
164 debug_on_next_call = 0; 164 debug_on_next_call = 0;
165 lisp_eval_depth = 0; 165 lisp_eval_depth = 0;
166 when_entered_debugger = 0; 166 /* This is less than the initial value of num_nonmacro_input_chars. */
167 when_entered_debugger = -1;
167} 168}
168 169
169Lisp_Object 170Lisp_Object