diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-04-10 01:34:55 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-04-10 01:34:55 +0000 |
commit | 9fe3f1a90a19e10359c57423b4e520acb866dad5 (patch) | |
tree | 4781149efd4d5b3264b0ddd0e9e9d07137285fdb | |
parent | b3dae448ad1113b1040d5e55023c3d278a65564d (diff) |
texk/kpathsea: disable unnecessary warning (w32 only)
git-svn-id: svn://tug.org/texlive/trunk@40381 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/knj.c | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index 6b52ba1b281..95b726e684c 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,7 @@ +2016-02-03 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + *knj.c: Disable unnecessary warning (w32 only). + 2016-04-06 Karl Berry <karl@tug.org> * texmf.cnf (TEXMFVAR, TEXMFCONFIG): 2016. diff --git a/Build/source/texk/kpathsea/knj.c b/Build/source/texk/kpathsea/knj.c index 571201ce85c..37e1c7589b5 100644 --- a/Build/source/texk/kpathsea/knj.c +++ b/Build/source/texk/kpathsea/knj.c @@ -1,7 +1,7 @@ /* knj.c: check for 2-Byte Kanji (CP 932, SJIS) codes. - Copyright 2010, 2014 Akira Kakuto. - Copyright 2013, 2014 TANAKA Takuji. + Copyright 2010, 2016 Akira Kakuto. + Copyright 2013, 2016 TANAKA Takuji. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -277,7 +277,6 @@ get_command_line_args_utf8 (const_string enc, int *p_ac, char ***p_av) *p_av = argv; return file_system_codepage; } else { - WARNING1("kpathsea: Ignoring unknown encoding `%s'", enc); return 0; } } |