aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2014-09-10 09:52:50 -0700
committerPaul Eggert2014-09-10 09:52:50 -0700
commitc9c0610d077a6a31f2c2aa06f201936034837184 (patch)
tree0068fdcf8a81a7b348eee1fb3b30f283a1099774 /src/ChangeLog
parent47003633639a963d2a911d51bf69f4e29d36ff53 (diff)
downloademacs-c9c0610d077a6a31f2c2aa06f201936034837184.tar.gz
emacs-c9c0610d077a6a31f2c2aa06f201936034837184.zip
* lisp.h (DEFINE_GDB_SYMBOL_ENUM): Remove.
These can generate a constant with the correct value but the wrong width, which doesn't work as a printf argument. All uses removed. Problem reported by Dmitry Antipov in: http://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00213.html (ENUMABLE): Remove; no longer needed. (ARRAY_MARK_FLAG_val, PSEUDOVECTOR_FLAG_val, VALMASK_val): Remove; no longer needed because of the above change. Each definiens moved to the only use.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b98d4eef355..ed9c3e71a55 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,15 @@
12014-09-10 Paul Eggert <eggert@cs.ucla.edu> 12014-09-10 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * lisp.h (DEFINE_GDB_SYMBOL_ENUM): Remove.
4 These can generate a constant with the correct value but the wrong
5 width, which doesn't work as a printf argument. All uses removed.
6 Problem reported by Dmitry Antipov in:
7 http://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00213.html
8 (ENUMABLE): Remove; no longer needed.
9 (ARRAY_MARK_FLAG_val, PSEUDOVECTOR_FLAG_val, VALMASK_val):
10 Remove; no longer needed because of the above change.
11 Each definiens moved to the only use.
12
3 Improve the experimental local and scoped allocation. 13 Improve the experimental local and scoped allocation.
4 * alloc.c (local_string_init, local_vector_init): 14 * alloc.c (local_string_init, local_vector_init):
5 New functions, defined if USE_LOCAL_ALLOCATORS. 15 New functions, defined if USE_LOCAL_ALLOCATORS.