From: Dave Love Date: Tue, 2 Nov 1999 12:58:32 +0000 (+0000) Subject: (init_eval): Conditionalize declaration of gcpro_level. X-Git-Tag: emacs-pretest-21.0.90~6205 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=87e21fbd58934c09c3211ecfae2efa7680804090;p=emacs.git (init_eval): Conditionalize declaration of gcpro_level. --- diff --git a/src/ChangeLog b/src/ChangeLog index c575045c72b..b1111d3876b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +1999-11-02 Dave Love + + * eval.c (init_eval): Conditionalize declaration of gcpro_level. + 1999-11-02 Gerd Moellmann * xfns.c (QCuser_data): New. 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 () Vquit_flag = Qnil; debug_on_next_call = 0; lisp_eval_depth = 0; +#ifdef DEBUG_GCPRO gcpro_level = 0; +#endif /* This is less than the initial value of num_nonmacro_input_events. */ when_entered_debugger = -1; }