aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-03-06 14:11:02 -0800
committerPaul Eggert2011-03-06 14:11:02 -0800
commit0e086e8f7f79c0473a00153ba70c7febab7d0712 (patch)
treefa0c58abee4c5b8650c241d18e980de1b4e0308b /src/ChangeLog
parent70739cbeb98fae41f27fc2e4fc34670c8ec39bb7 (diff)
downloademacs-0e086e8f7f79c0473a00153ba70c7febab7d0712.tar.gz
emacs-0e086e8f7f79c0473a00153ba70c7febab7d0712.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/ChangeLog5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ff8c5fd027d..5f7cc98ee2a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,8 +4,9 @@
4 Add a FIXME comment, since the code still doesn't look right. 4 Add a FIXME comment, since the code still doesn't look right.
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): Mark variables that 7 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
8 gcc -Wuninitialized cannot deduce are never used uninitialized. 8 Mark variables that gcc -Wuninitialized cannot deduce are never
9 used uninitialized.
9 10
10 * 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
11 which in turn is copied from coreutils. 12 which in turn is copied from coreutils.