diff options
author | hobbs <hobbs> | 2000-10-31 00:48:53 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-10-31 00:48:53 (GMT) |
commit | 9989555861b04afa810976b11b159395146274b7 (patch) | |
tree | 7526b6fb83a409eb307ee5257d9c5679c9fc0544 /unix/tclUnixInit.c | |
parent | 13cdc47304c493935d7f0df35be902be6cb74176 (diff) | |
download | tcl-9989555861b04afa810976b11b159395146274b7.zip tcl-9989555861b04afa810976b11b159395146274b7.tar.gz tcl-9989555861b04afa810976b11b159395146274b7.tar.bz2 |
* unix/tclUnixInit.c: added default encoding map from
"ja_JP.eucJP" to "euc-jp". (takahashi)
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r-- | unix/tclUnixInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index fb664bd..dcff38b 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -7,7 +7,7 @@ * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclUnixInit.c,v 1.19 2000/05/18 21:36:35 hobbs Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.20 2000/10/31 00:48:53 hobbs Exp $ */ #include "tclInt.h" @@ -58,6 +58,7 @@ typedef struct LocaleTable { static CONST LocaleTable localeTable[] = { {"ja_JP.SJIS", "shiftjis"}, {"ja_JP.EUC", "euc-jp"}, + {"ja_JP.eucJP", "euc-jp"}, {"ja_JP.JIS", "iso2022-jp"}, {"ja_JP.mscode", "shiftjis"}, {"ja_JP.ujis", "euc-jp"}, |