aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-05-30 22:47:57 -0700
committerPaul Eggert2011-05-30 22:47:57 -0700
commit97f4ea979720e535ade3fe0055fb710e18fb7b5d (patch)
tree9fccc6a8fb71a205b8f81b5efd9f4741f72f2d84 /src/ChangeLog
parent86f3178890f56cb408949e125d5d99e3124dd48f (diff)
downloademacs-97f4ea979720e535ade3fe0055fb710e18fb7b5d.tar.gz
emacs-97f4ea979720e535ade3fe0055fb710e18fb7b5d.zip
Fix ChangeLog entry order.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 90344adbe27..6d642cb063d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -6,6 +6,16 @@
6 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c: 6 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
7 All callers changed. (Bug#8762) 7 All callers changed. (Bug#8762)
8 8
9 * gnutls.c: Use Emacs's memory allocators.
10 Without this change, the gnutls library would invoke malloc etc.
11 directly, which causes problems on non-SYNC_INPUT hosts, and which
12 runs afoul of improving memory_full behavior. (Bug#8761)
13 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
14 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
15 xfree instead of the default malloc, realloc, free.
16 (Fgnutls_boot): No need to check for memory allocation failure,
17 since xmalloc does that for us.
18
9 Use 'inline', not 'INLINE'. 19 Use 'inline', not 'INLINE'.
10 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html> 20 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
11 * alloc.c, fontset.c (INLINE): Remove. 21 * alloc.c, fontset.c (INLINE): Remove.
@@ -40,18 +50,6 @@
40 50
412011-05-30 Paul Eggert <eggert@cs.ucla.edu> 512011-05-30 Paul Eggert <eggert@cs.ucla.edu>
42 52
43 * gnutls.c: Use Emacs's memory allocators.
44 Without this change, the gnutls library would invoke malloc etc.
45 directly, which causes problems on non-SYNC_INPUT hosts, and which
46 runs afoul of improving memory_full behavior. (Bug#8761)
47 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
48 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
49 xfree instead of the default malloc, realloc, free.
50 (Fgnutls_boot): No need to check for memory allocation failure,
51 since xmalloc does that for us.
52
532011-05-30 Paul Eggert <eggert@cs.ucla.edu>
54
55 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests. 53 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
56 54
57 * eval.c (Qdebug): Now static. 55 * eval.c (Qdebug): Now static.