groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[groff] 01/01: [gropdf]: Correct display of pathnames used.


From: Deri James
Subject: [groff] 01/01: [gropdf]: Correct display of pathnames used.
Date: Tue, 21 Jun 2022 11:39:34 -0400 (EDT)

deri pushed a commit to branch master
in repository groff.

commit ced9cd5984814f9701fd681b6c949d0708c2687c
Author: Deri James <deri@chuzzlewit.myzen.co.uk>
AuthorDate: Tue Jun 21 16:38:39 2022 +0100

    [gropdf]: Correct display of pathnames used.
    
    * font/devpdf/util/BuildFoundries.pl: Convert array to
    string of pathnames.
---
 ChangeLog                          | 7 +++++++
 font/devpdf/util/BuildFoundries.pl | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 59721ade..22415226 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2022-06-10  Deri James  <deri@chuzzlewit.myzen.co.uk>
+
+       [gropdf]: Correct display of pathnames used.
+
+       * font/devpdf/util/BuildFoundries.pl: Convert array to
+       string of pathnames.
+
 2022-06-10  Deri James  <deri@chuzzlewit.myzen.co.uk>
 
        [gropdf]: Fix to gropdf.
diff --git a/font/devpdf/util/BuildFoundries.pl 
b/font/devpdf/util/BuildFoundries.pl
index 9bf6fb0e..76c1bef8 100644
--- a/font/devpdf/util/BuildFoundries.pl
+++ b/font/devpdf/util/BuildFoundries.pl
@@ -86,7 +86,7 @@ sub LoadFoundry
 
        if (lc($r[0]) eq 'foundry')
        {
-           Warn("\nThe path(s) used for 
searching:\n".join(':',$foundrypath)."\n") if $notFoundFont;
+           Warn("\nThe path(s) used for 
searching:\n".join(':',@{$foundrypath})."\n") if $notFoundFont;
            $foundry=uc($r[1]);
            $foundrypath=[];
            push(@{$foundrypath},$dirURW) if $dirURW;
@@ -166,7 +166,7 @@ sub LoadFoundry
     }
 
     close(F);
-    Warn("\nThe path(s) used for searching:\n".join(':',$foundrypath)."\n") if 
$notFoundFont;
+    Warn("\nThe path(s) used for searching:\n".join(':',@{$foundrypath})."\n") 
if $notFoundFont;
 }
 
 sub RunAfmtodit



reply via email to

[Prev in Thread] Current Thread [Next in Thread]