summaryrefslogtreecommitdiff
path: root/font
diff options
context:
space:
mode:
authorG. Branden Robinson <g.branden.robinson@gmail.com>2022-07-13 01:58:35 -0500
committerG. Branden Robinson <g.branden.robinson@gmail.com>2022-07-14 04:24:38 -0500
commit89cb48d005ca8a867226be90e5f0986b7faa53be (patch)
tree30877fb6ee197cb3df2bb4110858cd31ea7de425 /font
parentbbdc314682a74c11b9dd90b8ff54ec160b7e59d9 (diff)
downloadgroff-git-89cb48d005ca8a867226be90e5f0986b7faa53be.tar.gz
[build]: Tweak BuildFoundries message readability.
* font/devpdf/util/BuildFoundries.pl (LoadFoundry): Separate lists of Type 1 font names with spaces as well as commas, for better diagnostic message readability. Also begin message in lowercase (per GNU Coding Standards).
Diffstat (limited to 'font')
-rw-r--r--font/devpdf/util/BuildFoundries.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/font/devpdf/util/BuildFoundries.pl b/font/devpdf/util/BuildFoundries.pl
index 195ed167e..f3b460475 100644
--- a/font/devpdf/util/BuildFoundries.pl
+++ b/font/devpdf/util/BuildFoundries.pl
@@ -129,8 +129,8 @@ sub LoadFoundry
if (uc($r[1]) ne 'Y')
{
$gotf=0;
- my $fns=join(',',split('!',$r[5]));
- Warn("Unable to locate font(s) $fns");
+ my $fns=join(', ',split('!',$r[5]));
+ Warn("unable to locate font file(s): $fns");
$notFoundFont=1;
unlink $gfont; # Unable to find the postscript file for the font just created by afmtodit
}