bug-groff
[Top][All Lists]
Advanced

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

[bug #62923] Broken aliases in PDF font description file


From: Deri James
Subject: [bug #62923] Broken aliases in PDF font description file
Date: Fri, 19 Aug 2022 20:04:14 -0400 (EDT)

Update of bug #62923 (project groff):

                  Status:                    None => Fixed                  
             Assigned to:                    None => deri                   

    _______________________________________________________

Follow-up Comment #1:

Thanks for this report. I have duplicated the issue and now have a fix which I
will be committing soon.

It is a one line change to the gropdf program which is a perl script probably
in /usr/bin or /usr/local/bin.


Around line 2414 change:-


            if ($r[1] eq '"')
            {
                $fnt{NAM}->{$r[0]}=$fnt{NAM}->{$lastnm};
                next;
            }

To this:-

            if ($r[1] eq '"')
            {
                $fnt{NAM}->{$r[0]}=[@{$fnt{NAM}->{$lastnm}}];
                next;
            }



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?62923>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

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