diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-08-06 17:54:06 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-08-06 17:54:06 +0300 |
commit | cb4545adef5f73617ed0ae1399a7507d12c6353e (patch) | |
tree | 467500cfc345f4af01a62aeedf1063f3206a2906 /src/.gdbinit | |
parent | 0613f5d515c2f7fe7930ad5f7d3e177e1fd3b44c (diff) | |
download | emacs-cb4545adef5f73617ed0ae1399a7507d12c6353e.tar.gz |
Fix redisplay bugs due to uninitialized glyphs in frame glyph pool.
dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
msdos.c (IT_display_cursor): Log cursor position on termscript.
.gdbinit (pgx): Display the avoid_cursor_p flag.
Diffstat (limited to 'src/.gdbinit')
-rw-r--r-- | src/.gdbinit | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index 1fd7e288736..b3bb6b58267 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -535,6 +535,9 @@ define pgx if ($g->overlaps_vertically_p) printf " OVL" end + if ($g->avoid_cursor_p) + printf " AVOID" + end if ($g->left_box_line_p) printf " [" end |