changeset 26307:155d5adcdff4

(init_eval): Conditionalize declaration of gcpro_level.
author Dave Love <fx@gnu.org>
date Tue, 02 Nov 1999 12:55:29 +0000
parents 13a14fa14cf2
children c2138070615f
files src/eval.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c	Tue Nov 02 12:52:56 1999 +0000
+++ b/src/eval.c	Tue Nov 02 12:55:29 1999 +0000
@@ -190,7 +190,9 @@
   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;
 }