changeset 106639:036850c09841

(pgx): Fix display of composite glyphs. Display cmp.from and cmp.to as well.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 26 Dec 2009 12:52:50 +0000
parents c77520ecba03
children 7079d8b517b0
files src/.gdbinit
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/.gdbinit	Fri Dec 25 20:05:14 2009 +0000
+++ b/src/.gdbinit	Sat Dec 26 12:52:50 2009 +0000
@@ -455,7 +455,7 @@
   end
   # COMPOSITE_GLYPH
   if ($g->type == 1)
-    printf "COMP[%d]", $g->u.cmp_id
+    printf "COMP[%d (%d..%d)]", $g->u.cmp.id, $g->u.cmp.from, $g->u.cmp.to
   end
   # IMAGE_GLYPH
   if ($g->type == 2)