From 1177ecf6791ba62b496c37a4d68b5c9f342c3d05 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 16 May 1997 00:43:18 +0000 Subject: [PATCH] (BYTES_USED): Put # at the beginning of line. (emacs_blocked_malloc): Likewise. --- src/alloc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/alloc.c b/src/alloc.c index 536286ff166..12849fd90a6 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -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; -- 2.39.2