diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-22 10:52:11 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-22 10:52:11 (GMT) |
commit | be83197ee590ec252235b5684a13f8d42e35c814 (patch) | |
tree | b57b72926cd55c777894cc254a3569ec274fb93e /generic | |
parent | 33918a2b0b4bd10fb1defc2f141b73d20565f40a (diff) | |
download | tcl-be83197ee590ec252235b5684a13f8d42e35c814.zip tcl-be83197ee590ec252235b5684a13f8d42e35c814.tar.gz tcl-be83197ee590ec252235b5684a13f8d42e35c814.tar.bz2 |
TIP #587: One place more where TCL_CFGVAL_ENCODING should fall back to utf-8
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclPkgConfig.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/generic/tclPkgConfig.c b/generic/tclPkgConfig.c index 83a00dd..12df68e 100644 --- a/generic/tclPkgConfig.c +++ b/generic/tclPkgConfig.c @@ -36,11 +36,7 @@ #include "tclInt.h" #ifndef TCL_CFGVAL_ENCODING -# ifdef _WIN32 -# define TCL_CFGVAL_ENCODING "cp1252" -# else -# define TCL_CFGVAL_ENCODING "iso8859-1" -# endif +# define TCL_CFGVAL_ENCODING "utf-8" #endif /* |