From: Chong Yidong Date: Sat, 29 Oct 2005 20:17:48 +0000 (+0000) Subject: * alloc.c (emacs_blocked_free): Fix typo. X-Git-Tag: emacs-pretest-22.0.90~6200 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bccfb31031b10ac2de02bf061516fd8fbdf6d56b;p=emacs.git * alloc.c (emacs_blocked_free): Fix typo. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8e5c9d05b4e..f27a762b210 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-10-29 Chong Yidong + + * alloc.c (emacs_blocked_free): Fix typo. + 2005-10-29 Richard M. Stallman * xdisp.c (handle_fontified_prop): Do nothing if memory full. diff --git a/src/alloc.c b/src/alloc.c index b18e313fc87..90ef4ba4e81 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1180,7 +1180,7 @@ emacs_blocked_free (ptr, ptr2) is substantially larger than the block size malloc uses. */ && (bytes_used_when_full > ((bytes_used_now = BYTES_USED) - + max (malloc_hysteresis, 4) * SPARE_MEMORY)) + + max (malloc_hysteresis, 4) * SPARE_MEMORY))) refill_memory_reserve (); __free_hook = emacs_blocked_free;