diff options
| author | Dave Love | 1999-11-02 12:58:32 +0000 |
|---|---|---|
| committer | Dave Love | 1999-11-02 12:58:32 +0000 |
| commit | 87e21fbd58934c09c3211ecfae2efa7680804090 (patch) | |
| tree | 1afde6d9bf7436f559d511a3127e3970695443c0 /src/eval.c | |
| parent | 0391ab47132e04c1d671f79ba2d0e08ae6586c05 (diff) | |
| download | emacs-87e21fbd58934c09c3211ecfae2efa7680804090.tar.gz emacs-87e21fbd58934c09c3211ecfae2efa7680804090.zip | |
(init_eval): Conditionalize declaration of gcpro_level.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 4245f72c0ed..1f067963d15 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -190,7 +190,9 @@ init_eval () | |||
| 190 | Vquit_flag = Qnil; | 190 | Vquit_flag = Qnil; |
| 191 | debug_on_next_call = 0; | 191 | debug_on_next_call = 0; |
| 192 | lisp_eval_depth = 0; | 192 | lisp_eval_depth = 0; |
| 193 | #ifdef DEBUG_GCPRO | ||
| 193 | gcpro_level = 0; | 194 | gcpro_level = 0; |
| 195 | #endif | ||
| 194 | /* This is less than the initial value of num_nonmacro_input_events. */ | 196 | /* This is less than the initial value of num_nonmacro_input_events. */ |
| 195 | when_entered_debugger = -1; | 197 | when_entered_debugger = -1; |
| 196 | } | 198 | } |