changeset 17831:9238a2254a23

(BYTES_USED): Put # at the beginning of line. (emacs_blocked_malloc): Likewise.
author Kenichi Handa <handa@m17n.org>
date Fri, 16 May 1997 00:43:18 +0000
parents 3cf4a044aaad
children 0cbd45e72b2d
files src/alloc.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/alloc.c	Fri May 16 00:43:15 1997 +0000
+++ b/src/alloc.c	Fri May 16 00:43:18 1997 +0000
@@ -214,9 +214,9 @@
 }
 
 #ifdef DOUG_LEA_MALLOC
-  #define BYTES_USED (mallinfo ().arena)
+#  define BYTES_USED (mallinfo ().arena)
 #else
-  #define BYTES_USED _bytes_used
+#  define BYTES_USED _bytes_used
 #endif
 
 /* Called if malloc returns zero */
@@ -374,11 +374,11 @@
 
   BLOCK_INPUT;
   __malloc_hook = old_malloc_hook;
-  #ifdef DOUG_LEA_MALLOC
+#ifdef DOUG_LEA_MALLOC
     mallopt (M_TOP_PAD, malloc_hysteresis * 4096);
-  #else
+#else
     __malloc_extra_blocks = malloc_hysteresis;
-  #endif
+#endif
   value = (void *) malloc (size);
   __malloc_hook = emacs_blocked_malloc;
   UNBLOCK_INPUT;