[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Groff-commit] groff/src/utils/afmtodit afmtodit.man afmtodit.pl
From: |
Werner LEMBERG |
Subject: |
[Groff-commit] groff/src/utils/afmtodit afmtodit.man afmtodit.pl |
Date: |
Sat, 03 Dec 2005 03:15:11 -0500 |
CVSROOT: /cvsroot/groff
Module name: groff
Branch:
Changes by: Werner LEMBERG <address@hidden> 05/12/03 08:15:11
Modified files:
src/utils/afmtodit: afmtodit.man afmtodit.pl
Log message:
doc fixes
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/src/utils/afmtodit/afmtodit.man.diff?tr1=1.14&tr2=1.15&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/src/utils/afmtodit/afmtodit.pl.diff?tr1=1.15&tr2=1.16&r1=text&r2=text
Patches:
Index: groff/src/utils/afmtodit/afmtodit.man
diff -u groff/src/utils/afmtodit/afmtodit.man:1.14
groff/src/utils/afmtodit/afmtodit.man:1.15
--- groff/src/utils/afmtodit/afmtodit.man:1.14 Mon Feb 14 06:09:06 2005
+++ groff/src/utils/afmtodit/afmtodit.man Sat Dec 3 08:15:11 2005
@@ -57,7 +57,7 @@
.ad \na
.
.LP
-The whitespace between an command line option and its argument is optional.
+The whitespace between a command line option and its argument is optional.
.
.SH DESCRIPTION
.B afmtodit
@@ -104,14 +104,11 @@
the `devps/generate' subdirectory of the default font directory.
.
.LP
-If a PostScript character is not named as
-.BI uni XXXX
-.RI ( XXXX
-are four uppercase hexadecimal digits), and is not mentioned in
+If a PostScript character is not mentioned in
.IR map_file ,
and a generic groff glyph name can't be deduced using the
Adobe Glyph List (AGL, built into
-.BR afmtodit ),
+.BR afmtodit ),
then
.B afmtodit
puts the PostScript character into the groff font file as an unnamed
@@ -119,6 +116,8 @@
.B \eN
escape sequence in
.BR troff .
+In particular, this is true for glyph variants like `foo.bar'; all glyph
+names containing one or more periods are mapped to unnamed entities.
.
If option
.B \-e
Index: groff/src/utils/afmtodit/afmtodit.pl
diff -u groff/src/utils/afmtodit/afmtodit.pl:1.15
groff/src/utils/afmtodit/afmtodit.pl:1.16
--- groff/src/utils/afmtodit/afmtodit.pl:1.15 Thu May 26 21:02:01 2005
+++ groff/src/utils/afmtodit/afmtodit.pl Sat Dec 3 08:15:11 2005
@@ -6246,8 +6246,8 @@
$map{$field[0], $nmap{$field[0]}} = $field[1];
$nmap{$field[0]} += 1;
- # There is more then one way to make a PS glyph name;
- # let us try unicode names with `uni' and `u' prefixes.
+ # There is more than one way to make a PS glyph name;
+ # let us try Unicode names with both `uni' and `u' prefixes.
my $utmp = $AGL_to_unicode{$field[0]};
if (defined $utmp && $utmp =~ /^[0-9A-F]{4}$/) {
foreach my $unicodepsname ("uni" . $utmp, "u" . $utmp) {
@@ -6564,3 +6564,5 @@
sub conv {
$_[0]*$unitwidth*$resolution/(72*1000*$sizescale) + ($_[0] < 0 ? -.5 : .5);
}
+
+# eof
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Groff-commit] groff/src/utils/afmtodit afmtodit.man afmtodit.pl,
Werner LEMBERG <=