diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-27 12:33:17 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-27 12:33:17 (GMT) |
commit | 9a9b87ca71f8790e35c76118128a219d7936cf44 (patch) | |
tree | 3b11147e8457a1cbd27f581a04adf7a852f19150 /generic/tclInt.decls | |
parent | 69ba11554c721b6f8f3cc0fd8b033dc5e287ccea (diff) | |
download | tcl-9a9b87ca71f8790e35c76118128a219d7936cf44.zip tcl-9a9b87ca71f8790e35c76118128a219d7936cf44.tar.gz tcl-9a9b87ca71f8790e35c76118128a219d7936cf44.tar.bz2 |
Fixed a spot where CONSTness had been forgotten.
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index e257ff8..121402a 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclInt.decls,v 1.100 2006/10/20 15:16:47 dkf Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.101 2006/10/27 12:33:18 dkf Exp $ library tcl @@ -390,7 +390,8 @@ declare 93 generic { # int TclpStat(CONST char *path, Tcl_StatBuf *buf) #} declare 96 generic { - int TclRenameCommand(Tcl_Interp *interp, char *oldName, char *newName) + int TclRenameCommand(Tcl_Interp *interp, CONST char *oldName, + CONST char *newName) } declare 97 generic { void TclResetShadowedCmdRefs(Tcl_Interp *interp, Command *newCmdPtr) |