summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorwlemb <wlemb>2003-12-31 15:04:55 +0000
committerwlemb <wlemb>2003-12-31 15:04:55 +0000
commit3be499ff7d0e7f9f0ce0888fe1a77b58fb8b2c9a (patch)
tree8ed07aada7293e965922b0fc20ac21970bfdb922 /src/utils
parent400784b9677df3bb78bd680cc564dc2e89914245 (diff)
downloadgroff-3be499ff7d0e7f9f0ce0888fe1a77b58fb8b2c9a.tar.gz
* src/utils/hpftodit/hpftodit.cpp (dump_tags): Handle posture_tag.
* font/devlj4/generate/Makefile (IFLAG): Updated to new units. (FONTS): Add TrueType font families Arial and Times New Roman. (TNRR, TNRB, TNRI, TNRBI, AR, AB, AI, ABI): New targets. * font/devlj4/generate/text.map: Fix Unicode values of `fi' and `fl'.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/hpftodit/hpftodit.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/utils/hpftodit/hpftodit.cpp b/src/utils/hpftodit/hpftodit.cpp
index 25d56887..d359c158 100644
--- a/src/utils/hpftodit/hpftodit.cpp
+++ b/src/utils/hpftodit/hpftodit.cpp
@@ -990,6 +990,13 @@ void dump_tags(File &f)
case serif_style_tag:
printf(" Serif Style (%u)", tag_info(t).value);
break;
+ case posture_tag:
+ printf(" Posture (%s)", tag_info(t).value == 0
+ ? "Upright"
+ : tag_info(t).value == 1
+ ? "Italic"
+ : "Alternate Italic");
+ break;
case max_width_tag:
printf(" Maximum Width (%u DU: %.2f em)", tag_info(t).value,
em_fract(tag_info(t).value));
@@ -1072,7 +1079,8 @@ void dump_tags(File &f)
case left_extent_tag:
printf(" Left Extent array");
break;
- // both signed and unsigned do exist!
+ // The type of this tag has changed from SHORT to SIGNED SHORT
+ // in TFM version 1.3.0.
case ascent_tag:
printf(" Character Ascent array");
break;