diff options
| author | nijtmans <nijtmans> | 2008-10-22 20:23:59 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2008-10-22 20:23:59 (GMT) |
| commit | 1d55f79a0bd3a10e918dfb04cee0075e1233bf96 (patch) | |
| tree | f697e3956660aaac137dd0ede261598f7662548e /generic/tclEncoding.c | |
| parent | 4231adaef34542ed0183f37f320fd9a92aa4d825 (diff) | |
| download | tcl-1d55f79a0bd3a10e918dfb04cee0075e1233bf96.zip tcl-1d55f79a0bd3a10e918dfb04cee0075e1233bf96.tar.gz tcl-1d55f79a0bd3a10e918dfb04cee0075e1233bf96.tar.bz2 | |
Letting CONST die a slow and graceful death, since NO_CONST was
broken since 8.4 and no-one complained about it.
Diffstat (limited to 'generic/tclEncoding.c')
| -rw-r--r-- | generic/tclEncoding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c index a1b43cb..7378e49 100644 --- a/generic/tclEncoding.c +++ b/generic/tclEncoding.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEncoding.c,v 1.62 2008/10/16 22:34:19 nijtmans Exp $ + * RCS: @(#) $Id: tclEncoding.c,v 1.63 2008/10/22 20:23:59 nijtmans Exp $ */ #include "tclInt.h" @@ -1670,7 +1670,7 @@ LoadTableEncoding( * sequences in the encoding files. */ - static char staticHex[] = { + static const char staticHex[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0 ... 15 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 16 ... 31 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 32 ... 47 */ |
