1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 20:30:32 -08:00

* alloc.c (emacs_blocked_free): Fix typo.

This commit is contained in:
Chong Yidong 2005-10-29 20:17:48 +00:00
parent 685abb980b
commit bccfb31031
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-10-29 Chong Yidong <cyd@stupidchicken.com>
* alloc.c (emacs_blocked_free): Fix typo.
2005-10-29 Richard M. Stallman <rms@gnu.org>
* xdisp.c (handle_fontified_prop): Do nothing if memory full.

View file

@ -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;