texlive[42167] Build/source/texk/mendexk: mendexk: a patch from H.
commits+kakuto at tug.org
commits+kakuto at tug.org
Wed Sep 28 08:28:44 CEST 2016
Revision: 42167
http://tug.org/svn/texlive?view=revision&revision=42167
Author: kakuto
Date: 2016-09-28 08:28:43 +0200 (Wed, 28 Sep 2016)
Log Message:
-----------
mendexk: a patch from H. Yamashita
Modified Paths:
--------------
trunk/Build/source/texk/mendexk/ChangeLog
trunk/Build/source/texk/mendexk/styfile.c
Modified: trunk/Build/source/texk/mendexk/ChangeLog
===================================================================
--- trunk/Build/source/texk/mendexk/ChangeLog 2016-09-28 01:16:56 UTC (rev 42166)
+++ trunk/Build/source/texk/mendexk/ChangeLog 2016-09-28 06:28:43 UTC (rev 42167)
@@ -1,3 +1,7 @@
+2016-09-28 Hironobu Yamashita <h.y.acetaminophen at gmail.com>
+
+ * styfile.c: Use mfgets() instead of fgets() in bfgets().
+
2016-02-02 TANAKA Takuji <ttk at t-lab.opal.ne.jp>
* mendex.1, mendex.doc: Convert encoding
Modified: trunk/Build/source/texk/mendexk/styfile.c
===================================================================
--- trunk/Build/source/texk/mendexk/styfile.c 2016-09-28 01:16:56 UTC (rev 42166)
+++ trunk/Build/source/texk/mendexk/styfile.c 2016-09-28 06:28:43 UTC (rev 42167)
@@ -21,7 +21,7 @@
bfgets (char *buf, int size, FILE *fp)
{
char *p, *q;
- p = fgets (buf, size, fp);
+ p = mfgets (buf, size, fp);
for (q = buf; *q; q++) {
if(*q == '\r') {
*q++ = '\n';
More information about the tex-live-commits
mailing list