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: anonymous
Subject: [bug #62923] Broken aliases in PDF font description file
Date: Sat, 20 Aug 2022 03:03:17 -0400 (EDT)

Follow-up Comment #2, bug #62923 (project groff):

Thank you for fixing it! I applied the fix you provided and it works but I
noticed that one thing is still broken: if you add an alias with name
radicalex to sqrtex in XITSMR, the radicalex is rendered on the same position
as sqrt (in groff_out there's no h command after Csqrt):


.special XITSMR
.EQ
sqrt x
.EN


It somehow gets fixed if I add this line at the top:


.char \[radicalex] \[sqrtex]


[comment #1 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]