]> git.eshelyaron.com Git - emacs.git/commitdiff
(enum mem_type): Compile unconditionally.
authorGerd Moellmann <gerd@gnu.org>
Thu, 17 Feb 2000 16:15:06 +0000 (16:15 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 17 Feb 2000 16:15:06 +0000 (16:15 +0000)
src/ChangeLog
src/alloc.c

index 26f5f8869a7e77b565fc7c8d9dcceae64474822d..ff9c666100440d0e328cd84dabe7d9748b67d095 100644 (file)
@@ -1,3 +1,7 @@
+2000-02-17  Gerd Moellmann  <gerd@gnu.org>
+
+       * alloc.c (enum mem_type): Compile unconditionally.
+
 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * xfaces.c (tty_defined_color): Don't return faulire indication
index 04c269deaf0cc8dfdd6e9cbc51c708e3de95ca21..32a537e52723ff1c35b79bbaeb990ceb9f64115c 100644 (file)
@@ -258,18 +258,6 @@ static void sweep_strings P_ ((void));
 
 extern int message_enable_multibyte;
 
-
-#if GC_MARK_STACK
-
-#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
-#include <stdio.h>             /* For fprintf.  */
-#endif
-
-/* A unique object in pure space used to make some Lisp objects
-   on free lists recognizable in O(1).  */
-
-Lisp_Object Vdead;
-
 /* When scanning the C stack for live Lisp objects, Emacs keeps track
    of what memory allocated via lisp_malloc is intended for what
    purpose.  This enumeration specifies the type of memory.  */
@@ -286,6 +274,17 @@ enum mem_type
   MEM_TYPE_VECTOR
 };
 
+#if GC_MARK_STACK
+
+#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
+#include <stdio.h>             /* For fprintf.  */
+#endif
+
+/* A unique object in pure space used to make some Lisp objects
+   on free lists recognizable in O(1).  */
+
+Lisp_Object Vdead;
+
 struct mem_node;
 static void *lisp_malloc P_ ((int, enum mem_type));
 static void mark_stack P_ ((void));