]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix ChangeLog entry order.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 31 May 2011 05:47:57 +0000 (22:47 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 31 May 2011 05:47:57 +0000 (22:47 -0700)
src/ChangeLog

index 90344adbe273e85464ec4098ee284f0bb9b9c242..6d642cb063d90079e0ac2c64346d48d55c4cb5b7 100644 (file)
@@ -6,6 +6,16 @@
        * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
        All callers changed.  (Bug#8762)
 
+       * gnutls.c: Use Emacs's memory allocators.
+       Without this change, the gnutls library would invoke malloc etc.
+       directly, which causes problems on non-SYNC_INPUT hosts, and which
+       runs afoul of improving memory_full behavior.  (Bug#8761)
+       (fn_gnutls_global_set_mem_functions): New macro or function pointer.
+       (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
+       xfree instead of the default malloc, realloc, free.
+       (Fgnutls_boot): No need to check for memory allocation failure,
+       since xmalloc does that for us.
+
        Use 'inline', not 'INLINE'.
        <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
        * alloc.c, fontset.c (INLINE): Remove.
        * ccl.c (CCL_CODE_RANGE): Allow negative numbers.  (Bug#8751)
        (CCL_CODE_MIN): New macro.
 
-2011-05-30  Paul Eggert  <eggert@cs.ucla.edu>
-
-       * gnutls.c: Use Emacs's memory allocators.
-       Without this change, the gnutls library would invoke malloc etc.
-       directly, which causes problems on non-SYNC_INPUT hosts, and which
-       runs afoul of improving memory_full behavior.  (Bug#8761)
-       (fn_gnutls_global_set_mem_functions): New macro or function pointer.
-       (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
-       xfree instead of the default malloc, realloc, free.
-       (Fgnutls_boot): No need to check for memory allocation failure,
-       since xmalloc does that for us.
-
 2011-05-30  Paul Eggert  <eggert@cs.ucla.edu>
 
        * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.