diff options
author | nijtmans <nijtmans> | 2008-07-24 22:57:54 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-07-24 22:57:54 (GMT) |
commit | c6ff6fce1217116410ac5084b505b161f58ab1a4 (patch) | |
tree | b05f08d9e623ebc209666315ba61553ad3139330 /generic/tcl.decls | |
parent | ac5cc6796dae55b9839ed9f82f6a2841b7a4bfa3 (diff) | |
download | tcl-c6ff6fce1217116410ac5084b505b161f58ab1a4.zip tcl-c6ff6fce1217116410ac5084b505b161f58ab1a4.tar.gz tcl-c6ff6fce1217116410ac5084b505b161f58ab1a4.tar.bz2 |
just a few const -> CONST (in header files and .decls files)
and CONST -> const (.c files and internal .h files)
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index f5cc117..1b6326d 100644 --- a/generic/tcl.decls +++ b/generic/tcl.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: tcl.decls,v 1.138 2008/07/24 21:54:39 nijtmans Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.139 2008/07/24 22:57:57 nijtmans Exp $ library tcl @@ -1037,7 +1037,7 @@ declare 286 generic { void Tcl_AppendObjToObj(Tcl_Obj *objPtr, Tcl_Obj *appendObjPtr) } declare 287 generic { - Tcl_Encoding Tcl_CreateEncoding(const Tcl_EncodingType *typePtr) + Tcl_Encoding Tcl_CreateEncoding(CONST Tcl_EncodingType *typePtr) } declare 288 generic { void Tcl_CreateThreadExitHandler(Tcl_ExitProc *proc, ClientData clientData) @@ -2137,7 +2137,7 @@ declare 586 generic { declare 587 generic { int Tcl_NRCallObjProc(Tcl_Interp *interp, Tcl_ObjCmdProc *objProc, ClientData clientData, int objc, - Tcl_Obj *const objv[]) + Tcl_Obj *CONST objv[]) } # TIP#304 (chan pipe) |