aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2014-01-20 08:55:28 -0800
committerPaul Eggert2014-01-20 08:55:28 -0800
commit009581fa6558c0ed4f804e7fecdc652ec3532810 (patch)
tree72ee808fb816066bdb59b9de553be74f5dec0da1 /src/ChangeLog
parent3c35702fe921254340ad949ce3cab0b668788c90 (diff)
downloademacs-009581fa6558c0ed4f804e7fecdc652ec3532810.tar.gz
emacs-009581fa6558c0ed4f804e7fecdc652ec3532810.zip
Apply previous change even if valgrind is not in use, since it avoids undefined behavior. This is simpler.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3ac22572d2f..62b9febea25 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,12 +1,9 @@
12014-01-20 Paul Eggert <eggert@cs.ucla.edu> 12014-01-20 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Pacify valgrind by initializing buffer redisplay bit. 3 Avoid undefined behavior by initializing buffer redisplay bit.
4 Problem reported by Dmitry Antipov in 4 Problem reported by Dmitry Antipov in
5 <http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01756.html>. 5 <http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01756.html>.
6 * alloc.c (USE_VALGRIND): Move this to ... 6 * buffer.c (Fget_buffer_create): Initialize redisplay bit.
7 * conf_post.h (USE_VALGRIND): ... here. Use booleans.
8 * buffer.c (Fget_buffer_create): Initialize redisplay bit
9 to pacify valgrind.
10 7
11 Revert some of the CANNOT_DUMP fix (Bug#16494). 8 Revert some of the CANNOT_DUMP fix (Bug#16494).
12 * lread.c (init_lread): Fix typo: NILP, not !NILP. 9 * lread.c (init_lread): Fix typo: NILP, not !NILP.