1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-08 15:35:02 +00:00

(make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if

arg is negative.
This commit is contained in:
Andrew Innes 2001-12-11 21:13:53 +00:00
parent 2c974b151e
commit d77fbc162b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-12-11 Andrew Innes <andrewi@gnu.org>
* insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
arg is negative.
2001-12-11 Richard M. Stallman <rms@gnu.org>
* m/hp800.h: Split the __hpux conditional into the parts

View File

@ -632,7 +632,7 @@ make_gap (nbytes_added)
{
if (nbytes_added >= 0)
make_gap_larger (nbytes_added);
#if defined (USE_MMAP_FOR_BUFFERS) || defined (REL_ALLOC)
#if defined USE_MMAP_FOR_BUFFERS || defined REL_ALLOC || defined DOUG_LEA_MALLOC
else
make_gap_smaller (-nbytes_added);
#endif