# HG changeset patch # User crestani # Date 1117623096 0 # Node ID d3bdda4872ac55c120814bfce87e6d304def7f11 # Parent 880ccb75159742f0b5e563262b7694472532ad91 [xemacs-hg @ 2005-06-01 10:51:34 by crestani] * ralloc.c: * ralloc.c (r_alloc_free): Call refill_memory_reserve only if MC_ALLOC is not defined. diff -r 880ccb751597 -r d3bdda4872ac src/ChangeLog --- a/src/ChangeLog Tue May 31 21:52:04 2005 +0000 +++ b/src/ChangeLog Wed Jun 01 10:51:36 2005 +0000 @@ -1,3 +1,9 @@ +2005-06-01 Marcus Crestani + + * ralloc.c: + * ralloc.c (r_alloc_free): Call refill_memory_reserve only if + MC_ALLOC is not defined. + 2005-05-28 Stephen J. Turnbull * XEmacs 21.5.21 "corn" is released. diff -r 880ccb751597 -r d3bdda4872ac src/ralloc.c --- a/src/ralloc.c Tue May 31 21:52:04 2005 +0000 +++ b/src/ralloc.c Wed Jun 01 10:51:36 2005 +0000 @@ -61,7 +61,9 @@ #include "getpagesize.h" #include +#ifndef MC_ALLOC void refill_memory_reserve (void); +#endif /* not MC_ALLOC */ #else /* Not emacs. */ @@ -984,7 +986,9 @@ *ptr = 0; #ifdef emacs +#ifndef MC_ALLOC refill_memory_reserve (); +#endif /* not MC_ALLOC */ #endif }