]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_eval): Conditionalize declaration of gcpro_level.
authorDave Love <fx@gnu.org>
Tue, 2 Nov 1999 12:58:32 +0000 (12:58 +0000)
committerDave Love <fx@gnu.org>
Tue, 2 Nov 1999 12:58:32 +0000 (12:58 +0000)
src/ChangeLog
src/eval.c

index c575045c72bae982d90b1cc95d82eae6fe8affc0..b1111d3876b4345719de2f5ac6b8568b91e4e045 100644 (file)
@@ -1,3 +1,7 @@
+1999-11-02  Dave Love  <fx@gnu.org>
+
+       * eval.c (init_eval): Conditionalize declaration of gcpro_level.
+
 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
 
        * xfns.c (QCuser_data): New.
index 4245f72c0ed0685681ac9055ddb00d1e3ca0dc46..1f067963d15c500dae9884e567d42530594bb1da 100644 (file)
@@ -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;
 }