1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 05:30:45 -08:00

(enable_glyph_matrix_rows): Remove xasserts.

This commit is contained in:
Gerd Moellmann 2000-09-22 19:54:28 +00:00
parent b48f74cb33
commit b30ab1b3b4
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2000-09-22 Gerd Moellmann <gerd@gnu.org>
* dispnew.c (enable_glyph_matrix_rows): Remove xasserts.
* xdisp.c (try_window_reusing_current_matrix): More fixes
for the case window has a header-line.
2000-09-22 Dave Love <fx@gnu.org>
* xdisp.c (syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide

View file

@ -809,10 +809,6 @@ enable_glyph_matrix_rows (matrix, start, end, enabled_p)
int start, end;
int enabled_p;
{
xassert (start <= end);
xassert (start >= 0 && start < matrix->nrows);
xassert (end >= 0 && end <= matrix->nrows);
for (; start < end; ++start)
matrix->rows[start].enabled_p = enabled_p != 0;
}