diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-09-06 07:57:07 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-09-06 07:57:07 +0000 |
commit | e6b2e4e09ae5d7dcae4522e8bb11c1f0a45d2a3a (patch) | |
tree | d8cee237c26fee7ca1259f0f2c299c81e8380280 | |
parent | 5dce43f5f2481a42443b1d783213adbbcfb68956 (diff) |
eptexdir: fix a bug in \epTeXinputencoding (by N. Abe)
git-svn-id: svn://tug.org/texlive/trunk@45228 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/eptexdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/eptexdir/eptex.ech | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/eptexdir/ChangeLog b/Build/source/texk/web2c/eptexdir/ChangeLog index 274f2bfa282..f7fb353f567 100644 --- a/Build/source/texk/web2c/eptexdir/ChangeLog +++ b/Build/source/texk/web2c/eptexdir/ChangeLog @@ -1,3 +1,7 @@ +2017-09-06 Noriyuki Abe <abenori@math.sci.hokudai.ac.jp> + + * eptex.ech: fix a bug in \epTeXinputencoding. + 2017-04-24 Hironori Kitagawa <h_kitagawa2001@yahoo.co.jp> * eptex.ech, etex.ch1, euptex.ch0, pdfutils.ch: diff --git a/Build/source/texk/web2c/eptexdir/eptex.ech b/Build/source/texk/web2c/eptexdir/eptex.ech index 02696bb9707..5702c3a4b95 100644 --- a/Build/source/texk/web2c/eptexdir/eptex.ech +++ b/Build/source/texk/web2c/eptexdir/eptex.ech @@ -343,7 +343,7 @@ epTeX_input_encoding_code:@<Implement \.{\\epTeXinputencoding}@>; begin scan_file_name; pack_cur_name; - if setinfileenc(cur_file,stringcast(name_of_file+1)) = false then + if setinfileenc(input_file[in_open],stringcast(name_of_file+1)) = false then begin wlog_cr; wlog('Unknown encoding `'); |