diff options
| author | Richard M. Stallman | 1994-04-30 02:16:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-30 02:16:15 +0000 |
| commit | b5b911f995d9c92df4a7518bd7b06504889d82ed (patch) | |
| tree | 4e4e95b0e8b33983cfc0b5b89c196bd05093ae2a /src | |
| parent | 78c71a989daf70e8efd0dd64f1bd367e60ada05f (diff) | |
| download | emacs-b5b911f995d9c92df4a7518bd7b06504889d82ed.tar.gz emacs-b5b911f995d9c92df4a7518bd7b06504889d82ed.zip | |
(init_eval): Initialize when_entered_debugger to -1.
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 3 |
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 | ||
| 169 | Lisp_Object | 170 | Lisp_Object |