aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2012-07-04 12:07:26 +0400
committerDmitry Antipov2012-07-04 12:07:26 +0400
commit8ce70ed205e01913845330d084b9dd793b66d2c6 (patch)
tree460d38b6d758a660b0fe2c02557f94ce40539496 /src/ChangeLog
parent24a212eb232e081c12f6b52429757657f0528e66 (diff)
downloademacs-8ce70ed205e01913845330d084b9dd793b66d2c6.tar.gz
emacs-8ce70ed205e01913845330d084b9dd793b66d2c6.zip
Fix compilation with --enable-gcc-warnings and -O1
optimization level. * configure.in: If --enable-gcc-warnings, disable -Wunsafe-loop-optimizations for -O1 optimization level. * src/doprnt.c (doprnt): Change type of tem to int, initialize to avoid compiler warning. Add eassert. * src/search.c (simple_search): Initialize match_byte to avoid compiler warning. Add eassert.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e335c8de8d4..065ff35ce77 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
2
3 Fix compilation with --enable-gcc-warnings and -O1
4 optimization level.
5 * doprnt.c (doprnt): Change type of tem to int, initialize
6 to avoid compiler warning. Add eassert.
7 * search.c (simple_search): Initialize match_byte to avoid
8 compiler warning. Add eassert.
9
12012-07-04 Paul Eggert <eggert@cs.ucla.edu> 102012-07-04 Paul Eggert <eggert@cs.ucla.edu>
2 11
3 Avoid weird behavior with large horizontal scrolls. 12 Avoid weird behavior with large horizontal scrolls.