summaryrefslogtreecommitdiff
path: root/Build/source/texk/ptexenc
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-01-25 02:50:25 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-01-25 02:50:25 +0000
commita2188c3264a0940268bd4e267df65741e7089aaf (patch)
tree6bcd3746e1006841d90c1bc28100f680aba13080 /Build/source/texk/ptexenc
parent0943824cfcdaf49f9165ef8c5d809810891329cc (diff)
texk/ptexenc: Fix a bug, thanks to N. Abe.
git-svn-id: svn://tug.org/texlive/trunk@39476 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/ptexenc')
-rw-r--r--Build/source/texk/ptexenc/ChangeLog4
-rw-r--r--Build/source/texk/ptexenc/ptexenc.c2
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;
}
}