diff options
author | nijtmans <nijtmans> | 2008-10-04 11:04:42 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-10-04 11:04:42 (GMT) |
commit | 67aa8715c3ab84a6c636b90a48b5a565c1dcc162 (patch) | |
tree | 18672f7646f13fd2740f8d75dd03b76ba5770241 /generic/tcl.decls | |
parent | 0f137db1b0ce02080631bf6fe5a86368df112ec4 (diff) | |
download | tcl-67aa8715c3ab84a6c636b90a48b5a565c1dcc162.zip tcl-67aa8715c3ab84a6c636b90a48b5a565c1dcc162.tar.gz tcl-67aa8715c3ab84a6c636b90a48b5a565c1dcc162.tar.bz2 |
* doc/GetIndex.3: CONSTified the tablePtr argument
* generic/tcl.decls: of Tcl_GetIndexFromObj.
* generic/tclIndexObj.c
* ChangeLog
* generic/tclDecls.h: regenerated
This change complies with TIP #27.
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 03bde78..8f9f46a 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.147 2008/10/03 00:05:22 dkf Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.148 2008/10/04 11:04:43 nijtmans Exp $ library tcl @@ -155,7 +155,7 @@ declare 35 generic { } declare 36 generic { int Tcl_GetIndexFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, - CONST84 char **tablePtr, CONST char *msg, int flags, int *indexPtr) + CONST84 char *CONST *tablePtr, CONST char *msg, int flags, int *indexPtr) } declare 37 generic { int Tcl_GetInt(Tcl_Interp *interp, CONST char *src, int *intPtr) |