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:
parent
685abb980b
commit
bccfb31031
2 changed files with 5 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue