]> code.delx.au - gnu-emacs/commitdiff
* alloc.c (emacs_blocked_free): Fix typo.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 29 Oct 2005 20:17:48 +0000 (20:17 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 29 Oct 2005 20:17:48 +0000 (20:17 +0000)
src/ChangeLog
src/alloc.c

index 8e5c9d05b4e2ead658be3f3f6b09a67d5b6c7c94..f27a762b2109848d22813e9d7c5a9249de057e09 100644 (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.
index b18e313fc87a0bca7bf9740a26a5548f11cdee08..90ef4ba4e815dc10882e4112e41c0baab7600b10 100644 (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;