src/dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.

This commit is contained in:
Juanma Barranquero 2011-11-30 13:58:42 +01:00
parent 801a431304
commit febe6beadc
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-11-30 Juanma Barranquero <lekktu@gmail.com>
* dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
2011-11-30 Eli Zaretskii <eliz@gnu.org>
* dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's

View file

@ -610,7 +610,7 @@ adjust_glyph_matrix (struct window *w, struct glyph_matrix *matrix, int x, int y
}
#if XASSERTS
if (row->enabled_p && !row->mode_line_p)
verify_row_hash (row));
xassert (verify_row_hash (row));
#endif
++row;
}