aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2009-12-26 12:53:42 +0000
committerEli Zaretskii2009-12-26 12:53:42 +0000
commit5b28ce35e3ae2f024b79621577ed996f36c14d9e (patch)
treea1da663f7e30af3ee16f547100f2c9df3989261f /src
parent4970fbfe847298e8073f8173bcb1ab7e5bdbeef3 (diff)
downloademacs-5b28ce35e3ae2f024b79621577ed996f36c14d9e.tar.gz
emacs-5b28ce35e3ae2f024b79621577ed996f36c14d9e.zip
(pgx): Fix display of composite glyphs. Display cmp.from and cmp.to as well.
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit2
-rw-r--r--src/ChangeLog5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index 6e717836376..949dfbfd480 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -455,7 +455,7 @@ define pgx
455 end 455 end
456 # COMPOSITE_GLYPH 456 # COMPOSITE_GLYPH
457 if ($g->type == 1) 457 if ($g->type == 1)
458 printf "COMP[%d]", $g->u.cmp_id 458 printf "COMP[%d (%d..%d)]", $g->u.cmp.id, $g->u.cmp.from, $g->u.cmp.to
459 end 459 end
460 # IMAGE_GLYPH 460 # IMAGE_GLYPH
461 if ($g->type == 2) 461 if ($g->type == 2)
diff --git a/src/ChangeLog b/src/ChangeLog
index 3858492a0b4..18a1a1cee3e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12009-12-26 Eli Zaretskii <eliz@gnu.org>
2
3 * .gdbinit (pgx): Fix display of composite glyphs. Display
4 cmp.from and cmp.to as well.
5
12009-12-19 Eli Zaretskii <eliz@gnu.org> 62009-12-19 Eli Zaretskii <eliz@gnu.org>
2 7
3 * .gdbinit (pitx): Don't use enum names, use their values. Remove 8 * .gdbinit (pitx): Don't use enum names, use their values. Remove