From 87e21fbd58934c09c3211ecfae2efa7680804090 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 2 Nov 1999 12:58:32 +0000 Subject: [PATCH] (init_eval): Conditionalize declaration of gcpro_level. --- src/ChangeLog | 4 ++++ src/eval.c | 2 ++ 2 files changed, 6 insertions(+) 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; } -- 2.39.5