diff options
author | dgp <dgp@users.sourceforge.net> | 2002-02-28 05:11:24 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-02-28 05:11:24 (GMT) |
commit | e74c02673aec97beeb6f8ae55376bd5b88d9e3cc (patch) | |
tree | 2b9c586de5573bc73d089f27034488ef9f4f1972 /generic/tcl.decls | |
parent | dfa5329058b763cbe42687ceba9095b5b13c5c2a (diff) | |
download | tcl-e74c02673aec97beeb6f8ae55376bd5b88d9e3cc.zip tcl-e74c02673aec97beeb6f8ae55376bd5b88d9e3cc.tar.gz tcl-e74c02673aec97beeb6f8ae55376bd5b88d9e3cc.tar.bz2 |
* doc/GetIndex.3:
* generic/tcl.decls (Tcl_GetIndexFromObjStruct):
* generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): Revised the
prototype of the Tcl_GetIndexFromObjStruct to take its struct
table as a (CONST VOID *) argument, better describing what it is,
maintaining source compatibility, and adding CONST correctness
according to TIP 27. Thanks to Joe English for an elegant
solution. [Bug 520304]
* generic/tclDecls.h: make genstubs
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 cc380ae..120f888 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -11,7 +11,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.84 2002/02/20 18:46:29 dgp Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.85 2002/02/28 05:11:25 dgp Exp $ library tcl @@ -1086,7 +1086,7 @@ declare 303 generic { } declare 304 generic { int Tcl_GetIndexFromObjStruct(Tcl_Interp *interp, Tcl_Obj *objPtr, - CONST84 char **tablePtr, int offset, CONST char *msg, int flags, + CONST VOID *tablePtr, int offset, CONST char *msg, int flags, int *indexPtr) } declare 305 generic { |