diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-09-17 15:47:37 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-09-17 15:47:37 +0300 |
commit | ffc3882f6ceca6c1516d5dda6f719bbaed1fa7df (patch) | |
tree | d2413e69344ca46602a136a29f91e3112b96a12a /src/dispnew.c | |
parent | 5877bb8d7e55eda3f81a36bfabe4dd816a34269f (diff) |
Minor fixes to interfaces, avoid assertion violation under GLYPH_DEBUG.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r-- | src/dispnew.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 2378e72091..fba38f1378 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -3205,7 +3205,12 @@ update_frame_with_menu (struct frame *f) fflush (FRAME_TTY (f)->output); /* Check window matrices for lost pointers. */ #if GLYPH_DEBUG +#if 0 + /* We cannot possibly survive the matrix pointers check, since + we have overwritten parts of the frame glyph matrix without + making any updates to the window matrices. */ check_window_matrix_pointers (root_window); +#endif add_frame_display_history (f, paused_p); #endif |