diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-01-25 02:50:25 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-01-25 02:50:25 +0000 |
commit | a2188c3264a0940268bd4e267df65741e7089aaf (patch) | |
tree | 6bcd3746e1006841d90c1bc28100f680aba13080 | |
parent | 0943824cfcdaf49f9165ef8c5d809810891329cc (diff) |
texk/ptexenc: Fix a bug, thanks to N. Abe.
git-svn-id: svn://tug.org/texlive/trunk@39476 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/ptexenc/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/ptexenc/ptexenc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/ptexenc/ChangeLog b/Build/source/texk/ptexenc/ChangeLog index d95467445d6..0daf361f908 100644 --- a/Build/source/texk/ptexenc/ChangeLog +++ b/Build/source/texk/ptexenc/ChangeLog @@ -1,3 +1,7 @@ +2016-01-25 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * ptexenc.c: Fix a bug, reported by N. Abe, in isUTF8Nstream(). + 2015-10-25 TANAKA Takuji <ttk@t-lab.opal.ne.jp> * ptexenc.c: Enable composition of Hiragana, Katakana diff --git a/Build/source/texk/ptexenc/ptexenc.c b/Build/source/texk/ptexenc/ptexenc.c index 3fce9aaaa1b..23b9ea4f052 100644 --- a/Build/source/texk/ptexenc/ptexenc.c +++ b/Build/source/texk/ptexenc/ptexenc.c @@ -744,7 +744,7 @@ static boolean isUTF8Nstream(FILE *fp) for (i=0; i<MARK_LEN; i++) { c[i] = getc4(fp); if (!(bom_l[i] <= c[i] && c[i] <= bom_u[i])) { - do { ungetc4(c[i], fp); } while (--i>0); + do { ungetc4(c[i], fp); } while (i-- > 0); return false; } } |