]> git.eshelyaron.com Git - emacs.git/commitdiff
(BYTES_USED): Put # at the beginning of line.
authorKenichi Handa <handa@m17n.org>
Fri, 16 May 1997 00:43:18 +0000 (00:43 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 16 May 1997 00:43:18 +0000 (00:43 +0000)
(emacs_blocked_malloc): Likewise.

src/alloc.c

index 536286ff16639680681c9962d97076af691d2e42..12849fd90a6f8d2bb0c1ce2d25c12f888a266f58 100644 (file)
@@ -214,9 +214,9 @@ display_malloc_warning ()
 }
 
 #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 @@ emacs_blocked_malloc (size)
 
   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;