diff options
| author | Eli Zaretskii | 2010-08-06 17:54:06 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-08-06 17:54:06 +0300 |
| commit | cb4545adef5f73617ed0ae1399a7507d12c6353e (patch) | |
| tree | 467500cfc345f4af01a62aeedf1063f3206a2906 /src/.gdbinit | |
| parent | 0613f5d515c2f7fe7930ad5f7d3e177e1fd3b44c (diff) | |
| download | emacs-cb4545adef5f73617ed0ae1399a7507d12c6353e.tar.gz emacs-cb4545adef5f73617ed0ae1399a7507d12c6353e.zip | |
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 | |||
| 535 | if ($g->overlaps_vertically_p) | 535 | if ($g->overlaps_vertically_p) |
| 536 | printf " OVL" | 536 | printf " OVL" |
| 537 | end | 537 | end |
| 538 | if ($g->avoid_cursor_p) | ||
| 539 | printf " AVOID" | ||
| 540 | end | ||
| 538 | if ($g->left_box_line_p) | 541 | if ($g->left_box_line_p) |
| 539 | printf " [" | 542 | printf " [" |
| 540 | end | 543 | end |