diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2019-08-04 12:29:26 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2019-08-04 12:29:26 +0000 |
commit | 9ee0962b15061e17542b9b5c400b31c0ab0392a4 (patch) | |
tree | b9a5d0c95537f7693da06a1760a117ba89297c37 /Build | |
parent | 77b698b2f91d324a5fd90f498cfec0fd505529a7 (diff) |
ppltotf.ch: bug fix
git-svn-id: svn://tug.org/texlive/trunk@51814 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/ptexdir/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/ptexdir/ppltotf.ch | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/ptexdir/ChangeLog b/Build/source/texk/web2c/ptexdir/ChangeLog index e7a2289424a..f95f33d06f6 100644 --- a/Build/source/texk/web2c/ptexdir/ChangeLog +++ b/Build/source/texk/web2c/ptexdir/ChangeLog @@ -1,3 +1,8 @@ +2019-08-04 Hironobu Yamashita <h.y.acetaminophen@gmail.com> + + * ppltotf.ch: 'This property name doesn't belong in a TYPE list' + was never available. + 2019-06-24 Hironobu Yamashita <h.y.acetaminophen@gmail.com> * ptex-base.ch: 'Improper alphabetic or KANJI constant' error diff --git a/Build/source/texk/web2c/ptexdir/ppltotf.ch b/Build/source/texk/web2c/ptexdir/ppltotf.ch index f02f46b66b0..cb9aafa10b6 100644 --- a/Build/source/texk/web2c/ptexdir/ppltotf.ch +++ b/Build/source/texk/web2c/ptexdir/ppltotf.ch @@ -520,7 +520,7 @@ end; @ @<Read a kanji property@>= begin get_name; if cur_code=comment_code then skip_to_end_of_item -else if (cur_code<char_wd_code)and(cur_code>char_ic_code) then +else if (cur_code<char_wd_code)or(cur_code>char_ic_code) then flush_error('This property name doesn''t belong in a TYPE list') else begin case cur_code of char_wd_code: char_wd[c]:=sort_in(width,get_fix); |