From: umorigu Date: Tue, 2 Dec 2014 16:52:50 +0000 (+0900) Subject: Use eucJP-ms as input codeset of NKF conversion instead of EUC-JP X-Git-Url: http://git.osdn.net/view?p=pukiwiki%2Fpukiwiki_devel.git;a=commitdiff_plain;h=7efde1ab7b65177c5f9a93566d9a9d0c082a9f2b Use eucJP-ms as input codeset of NKF conversion instead of EUC-JP --- diff --git a/release.sh b/release.sh index 56af3ac..feab943 100755 --- a/release.sh +++ b/release.sh @@ -155,7 +155,7 @@ if [ "$__utf8" ] ; then convert(){ for list in "$@" ; do # NOTE: Specify '-E'(From EUC-JP) otherwise skin file will be collapsed - nkf -Ew "$list" > "$list.$$.tmp" && mv "$list.$$.tmp" "$list" && echo " $list" + nkf --ic=eucJP-ms -w "$list" > "$list.$$.tmp" && mv "$list.$$.tmp" "$list" && echo " $list" done } convert_EUCJP2UTF8(){