Skip to content

Commit

Permalink
ptexenc/unicode-jp.c: changed the returned value of UCS2toJISnative(0…
Browse files Browse the repository at this point in the history
…) from 0x222F to 0
  • Loading branch information
h-kitagawa committed Jun 20, 2021
1 parent cb355a3 commit b443b80
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/texk/ptexenc/unicode-jp.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ static int UCS2toJISnative(int ucs2)
{
int i, j;

if (ucs2==0) return 0;
for (i=0; i<MAXJIS; i++) {
for (j=0; j<94; j++) {
if (UnicodeTbl[i][j] == ucs2) {
Expand Down

0 comments on commit b443b80

Please sign in to comment.