# HG changeset patch # User Chong Yidong # Date 1130617068 0 # Node ID 60d77f0435afd5ab07bfe735ddd1eb47ba5c8d27 # Parent 7b888ab5ef0b8dd8e2cda10a1e7021dc07490c82 * alloc.c (emacs_blocked_free): Fix typo. diff -r 7b888ab5ef0b -r 60d77f0435af src/ChangeLog --- a/src/ChangeLog Sat Oct 29 20:04:09 2005 +0000 +++ b/src/ChangeLog Sat Oct 29 20:17:48 2005 +0000 @@ -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 -r 7b888ab5ef0b -r 60d77f0435af src/alloc.c --- a/src/alloc.c Sat Oct 29 20:04:09 2005 +0000 +++ b/src/alloc.c Sat Oct 29 20:17:48 2005 +0000 @@ -1180,7 +1180,7 @@ 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;