summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.decls
diff options
context:
space:
mode:
authornijtmans <nijtmans>2008-07-24 22:57:54 (GMT)
committernijtmans <nijtmans>2008-07-24 22:57:54 (GMT)
commitc6ff6fce1217116410ac5084b505b161f58ab1a4 (patch)
treeb05f08d9e623ebc209666315ba61553ad3139330 /generic/tclInt.decls
parentac5cc6796dae55b9839ed9f82f6a2841b7a4bfa3 (diff)
downloadtcl-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/tclInt.decls')
-rw-r--r--generic/tclInt.decls10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls
index 3e02cd7..e1e46d0 100644
--- a/generic/tclInt.decls
+++ b/generic/tclInt.decls
@@ -13,7 +13,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.125 2008/07/22 23:05:31 das Exp $
+# RCS: @(#) $Id: tclInt.decls,v 1.126 2008/07/24 22:57:57 nijtmans Exp $
library tcl
@@ -915,7 +915,7 @@ declare 231 generic {
# Bits and pieces of TIP#280's guts
declare 232 generic {
int TclEvalObjEx(Tcl_Interp *interp, Tcl_Obj *objPtr, int flags,
- const CmdFrame *invoker, int word)
+ CONST CmdFrame *invoker, int word)
}
declare 233 generic {
void TclGetSrcInfoForPc(CmdFrame *contextPtr)
@@ -923,7 +923,7 @@ declare 233 generic {
# Exports for VarReform compat: Itcl, XOTcl like to peek into our varTables :(
declare 234 generic {
- Var *TclVarHashCreateVar(TclVarHashTable *tablePtr, const char *key,
+ Var *TclVarHashCreateVar(TclVarHashTable *tablePtr, CONST char *key,
int *newPtr)
}
declare 235 generic {
@@ -948,7 +948,7 @@ declare 238 generic {
}
declare 239 generic {
int TclNRInterpProc(ClientData clientData, Tcl_Interp *interp,
- int objc, Tcl_Obj *const objv[])
+ int objc, Tcl_Obj *CONST objv[])
}
declare 240 generic {
int TclNRInterpProcCore(Tcl_Interp *interp, Tcl_Obj *procNameObj,
@@ -963,7 +963,7 @@ declare 242 generic {
declare 243 generic {
int TclNREvalObjEx(Tcl_Interp *interp, Tcl_Obj *objPtr, int flags,
- const CmdFrame *invoker, int word)
+ CONST CmdFrame *invoker, int word)
}
##############################################################################