diff options
author | Kevin B Kenny <kennykb@acm.org> | 2006-09-26 23:01:10 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2006-09-26 23:01:10 (GMT) |
commit | b725003f03a39521f6ea93c9ee3f7a688eb96674 (patch) | |
tree | 0ce810c294bb948261ddbab693ef6d314cde3a0d /generic/tclEncoding.c | |
parent | 6142afe35274394fb66bf8ec381f250f4cb9dd11 (diff) | |
download | tcl-b725003f03a39521f6ea93c9ee3f7a688eb96674.zip tcl-b725003f03a39521f6ea93c9ee3f7a688eb96674.tar.gz tcl-b725003f03a39521f6ea93c9ee3f7a688eb96674.tar.bz2 |
TIP 27 changes for Tcl_CreateEncoding
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 f5e216a..a766013 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.43 2006/08/09 18:12:25 dgp Exp $ + * RCS: @(#) $Id: tclEncoding.c,v 1.44 2006/09/26 23:01:11 kennykb Exp $ */ #include "tclInt.h" @@ -983,7 +983,7 @@ Tcl_SetSystemEncoding( Tcl_Encoding Tcl_CreateEncoding( - Tcl_EncodingType *typePtr) /* The encoding type. */ + const Tcl_EncodingType *typePtr) /* The encoding type. */ { Tcl_HashEntry *hPtr; int new; |