1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

* dispnew.c (update_window): Fixing compile error due to

xassert being uncondition, but predicate is.
This commit is contained in:
Steven Tamm 2005-02-03 07:05:35 +00:00
parent 8dc22b869e
commit 4a34b52963
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-02-02 Steven Tamm <steventamm@mac.com>
* dispnew.c (update_window): Fixing compile error due to
GLYPH_DEBUG being undefined.
2005-02-02 Miles Bader <miles@gnu.org>
* dispextern.h (xassert): Enable unconditionally.

View File

@ -4065,11 +4065,11 @@ update_window (w, force_p)
extern Lisp_Object do_mouse_tracking;
#if GLYPH_DEBUG
struct frame *f = XFRAME (WINDOW_FRAME (w));
#endif
/* Check that W's frame doesn't have glyph matrices. */
xassert (FRAME_WINDOW_P (f));
xassert (updating_frame != NULL);
#endif
/* Check pending input the first time so that we can quickly return. */
if (redisplay_dont_pause)