+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
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. */
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));