* xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.

This commit is contained in:
Paul Eggert 2012-06-03 23:03:19 -07:00
parent 7c1898a7b9
commit c05cf3902a
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
* xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
2012-06-03 Glenn Morris <rgm@gnu.org>
* xdisp.c (tool-bar-style): Doc fix.

View file

@ -26967,12 +26967,12 @@ note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y,
int dx, dy, width, height;
ptrdiff_t charpos;
Lisp_Object string, object = Qnil;
Lisp_Object pos, help;
Lisp_Object pos IF_LINT (= Qnil), help;
Lisp_Object mouse_face;
int original_x_pixel = x;
struct glyph * glyph = NULL, * row_start_glyph = NULL;
struct glyph_row *row;
struct glyph_row *row IF_LINT (= 0);
if (area == ON_MODE_LINE || area == ON_HEADER_LINE)
{