diff options
-rw-r--r-- | Build/source/texk/web2c/lib/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog index 39a6d9e98d4..fc19d320b90 100644 --- a/Build/source/texk/web2c/lib/ChangeLog +++ b/Build/source/texk/web2c/lib/ChangeLog @@ -1,3 +1,7 @@ +2014-07-21 Akira Kakuto <kakuto@fuk.kinidai.ac.jp> + + * texmfmp.c: Use getnullstr() in maketexstring(), also in aleph. + 2014-07-19 Akira Kakuto <kakuto@fuk.kinidai.ac.jp> * texmfmp.c: Use getnullstr() in maketexstring(), as in pdfTeX, diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index ae274b23d35..311425345b1 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -2590,7 +2590,7 @@ maketexstring(const_string s) UInt32 rval; const unsigned char *cp = (const unsigned char *)s; #endif -#if defined(TeX) && !defined(Aleph) +#if defined(TeX) if (s == NULL || *s == 0) return getnullstr(); #else |