diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-16 11:01:46 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-16 11:01:46 (GMT) |
commit | 445ffe85310c4a5853d313305b11a4323605c29c (patch) | |
tree | 63e10d73bcbdace36ddcd567d3e00bebcb9372c4 /generic/tclZlib.c | |
parent | 3bb6d870416fa3e858f780bf958bd188d13d58a2 (diff) | |
download | tcl-445ffe85310c4a5853d313305b11a4323605c29c.zip tcl-445ffe85310c4a5853d313305b11a4323605c29c.tar.gz tcl-445ffe85310c4a5853d313305b11a4323605c29c.tar.bz2 |
[Bug 3601086]: Register zlib config as iso8859-1 (a superset of ascii) as that
is an encoding we guarantee to support without loading encoding files.
Diffstat (limited to 'generic/tclZlib.c')
-rw-r--r-- | generic/tclZlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c index 9c1176e..47091de 100644 --- a/generic/tclZlib.c +++ b/generic/tclZlib.c @@ -3865,7 +3865,7 @@ TclZlibInit( cfg[0].key = "zlibVersion"; cfg[0].value = zlibVersion(); cfg[1].key = NULL; - Tcl_RegisterConfig(interp, "zlib", cfg, "ascii"); + Tcl_RegisterConfig(interp, "zlib", cfg, "iso8859-1"); /* * Formally provide the package as a Tcl built-in. |