aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-03-06 14:22:56 -0800
committerPaul Eggert2011-03-06 14:22:56 -0800
commit44a3a108430ef79370ad2957a5d71d4cd040962b (patch)
treeb4f9a5c5c872a569f4939cfa2f3032c77bc3a2d8 /src/ChangeLog
parent0e086e8f7f79c0473a00153ba70c7febab7d0712 (diff)
downloademacs-44a3a108430ef79370ad2957a5d71d4cd040962b.tar.gz
emacs-44a3a108430ef79370ad2957a5d71d4cd040962b.zip
xdisp.c (draw_glyphs):
Mark variables that gcc -Wuninitialized cannot deduce are never used uninitialized.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5f7cc98ee2a..c0e350e45f9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -5,8 +5,8 @@
5 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this 5 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
6 avoids a gcc -Wuninitialized diagnostic. 6 avoids a gcc -Wuninitialized diagnostic.
7 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs): 7 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
8 Mark variables that gcc -Wuninitialized cannot deduce are never 8 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
9 used uninitialized. 9 does not deduce are never used uninitialized.
10 10
11 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c 11 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c
12 which in turn is copied from coreutils. 12 which in turn is copied from coreutils.