aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-02 10:16:09 -0700
committerPaul Eggert2011-06-02 10:16:09 -0700
commit037e65b496485cf3bd570a805bac787abac39cf3 (patch)
tree343a49d60bc28ba9871c09442d7971d85a2901d7 /src/ChangeLog
parentb3e945d3a47c5c64d84cb56594ff8c884acb1c37 (diff)
parent57f53182c004f51e47818d70968a07579440eaff (diff)
downloademacs-037e65b496485cf3bd570a805bac787abac39cf3.tar.gz
emacs-037e65b496485cf3bd570a805bac787abac39cf3.zip
Merge: memory_full, gnutls improvements
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 703976e4700..45d8e38738a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,21 @@
12011-06-02 Paul Eggert <eggert@cs.ucla.edu> 12011-06-02 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Malloc failure behavior now depends on size of allocation.
4 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
5 * lisp.h: Change signatures accordingly.
6 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
7 All callers changed. (Bug#8762)
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
3 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771) 19 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
4 * category.c (hash_get_category_set): 20 * category.c (hash_get_category_set):
5 * ccl.c (ccl_driver): 21 * ccl.c (ccl_driver):