Skip to content

Commit

Permalink
[uptex] add LGR table (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-tk committed Aug 25, 2024
1 parent 75c19d1 commit 4aa1115
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/texk/web2c/uptexdir/uptex-m.ch
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ end;
@d enc_t2a=@"90
@d enc_t2b=@"91
@d enc_t2c=@"92
@d enc_lgr=@"A0
@z
@x
Expand Down Expand Up @@ -452,7 +453,8 @@ kchar_num: print_esc("kchar");
else if font_enc[f]=enc_l7x then print("/L7x")
else if font_enc[f]=enc_t2a then print("/T2A")
else if font_enc[f]=enc_t2b then print("/T2B")
else if font_enc[f]=enc_t2c then print("/T2C");
else if font_enc[f]=enc_t2c then print("/T2C")
else if font_enc[f]=enc_lgr then print("/LGR");
@z
@x
Expand Down Expand Up @@ -2458,6 +2460,7 @@ if scan_keyword_noexpand("in") then
else if scan_keyword_noexpand("t2a") then jfm_enc:=enc_t2a
else if scan_keyword_noexpand("t2b") then jfm_enc:=enc_t2b
else if scan_keyword_noexpand("t2c") then jfm_enc:=enc_t2c
else if scan_keyword_noexpand("lgr") then jfm_enc:=enc_lgr
else begin
print_err("Unknown TFM encoding");
@.Unknown TFM encoding@>
Expand Down

0 comments on commit 4aa1115

Please sign in to comment.