summaryrefslogtreecommitdiff
path: root/src/.gdbinit
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2014-09-26 17:52:47 +0300
committerEli Zaretskii <eliz@gnu.org>2014-09-26 17:52:47 +0300
commitd51702fd71cf2d350c72079011075556f4eb6531 (patch)
tree173f591311057bcd8528844d2c2bacd8420b8f4f /src/.gdbinit
parent0df5896cd2851947d2bc186ff82c5a43e7bdd0c7 (diff)
downloademacs-d51702fd71cf2d350c72079011075556f4eb6531.tar.gz
Fix N1 and N2. Remove special level for PDF.
Improve glyphless glyph display in .gdbinit/pgx.
Diffstat (limited to 'src/.gdbinit')
-rw-r--r--src/.gdbinit12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index c10fe3ddded..d76c3aa8e05 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -468,18 +468,18 @@ define pgx
end
# GLYPHLESS_GLYPH
if ($g.type == 2)
- printf "GLYPHLESS["
+ printf "G-LESS["
if ($g.u.glyphless.method == 0)
- printf "THIN]"
+ printf "THIN;0x%x]", $g.u.glyphless.ch
end
if ($g.u.glyphless.method == 1)
- printf "EMPTY]"
+ printf "EMPTY;0x%x]", $g.u.glyphless.ch
end
if ($g.u.glyphless.method == 2)
- printf "ACRO]"
+ printf "ACRO;0x%x]", $g.u.glyphless.ch
end
if ($g.u.glyphless.method == 3)
- printf "HEX]"
+ printf "HEX;0x%x]", $g.u.glyphless.ch
end
end
# IMAGE_GLYPH
@@ -498,7 +498,7 @@ define pgx
printf " pos=%d", $g.charpos
end
# For characters, print their resolved level and bidi type
- if ($g.type == 0)
+ if ($g.type == 0 || $g.type == 2)
printf " blev=%d,btyp=", $g.resolved_level
pbiditype $g.bidi_type
end