Skip to content

Commit f3a7add

Browse files
committed
Fix typo in multi-byte encodings (EHC_CN --> EUC_CN)
1 parent a58843b commit f3a7add

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,11 @@ AC_ARG_WITH(mb,
238238
[ --with-mb=<encoding> enable multi-byte support ],
239239
[
240240
case "$withval" in
241-
EUC_JP|EHC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT)
241+
EUC_JP|EUC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT)
242242
AC_MSG_RESULT("enabled with $withval")
243243
;;
244244
*)
245-
AC_MSG_ERROR([*** You must supply an argument to the --with-mb option one of EUC_JP,EHC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5,KOI8,WIN,ALT])
245+
AC_MSG_ERROR([*** You must supply an argument to the --with-mb option one of EUC_JP,EUC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5,KOI8,WIN,ALT])
246246
;;
247247
esac
248248
MULTIBYTE="$withval"

0 commit comments

Comments
 (0)