+2003-09-19 Dave Love <fx@gnu.org>
+
+ * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
+
2003-09-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
* xterm.c (x_set_offset): Take window manager decorations
2003-09-18 Dave Love <fx@gnu.org>
+ * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
+
* process.c (Fnetwork_interface_info): Fix type error.
(Fnetwork_interface_list): Doc fix.
(read_process_output, read_process_output): Delete unused var.
#include <signal.h>
-/* GC_MALLOC_CHECK defined means perform validity checks of malloc'd
- memory. Can do this only if using gmalloc.c. */
-
-#if defined SYSTEM_MALLOC || defined DOUG_LEA_MALLOC
-#undef GC_MALLOC_CHECK
-#endif
-
/* This file is part of the core Lisp implementation, and thus must
deal with the real data structures. If the Lisp implementation is
replaced, this file likely will not be used. */
#include "syssignal.h"
#include <setjmp.h>
+/* GC_MALLOC_CHECK defined means perform validity checks of malloc'd
+ memory. Can do this only if using gmalloc.c. */
+
+#if defined SYSTEM_MALLOC || defined DOUG_LEA_MALLOC
+#undef GC_MALLOC_CHECK
+#endif
+
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#else