diff options
author | redman <redman> | 1999-08-10 22:45:10 (GMT) |
---|---|---|
committer | redman <redman> | 1999-08-10 22:45:10 (GMT) |
commit | 9d34f16944286a9d17163ef7cf4455b1b863a28d (patch) | |
tree | 8f2a875757259d7227e3f0b66e3a31613356e670 /generic/tclListObj.c | |
parent | 324d20b570be85ce259bea58a1d37768b7a01634 (diff) | |
download | tcl-9d34f16944286a9d17163ef7cf4455b1b863a28d.zip tcl-9d34f16944286a9d17163ef7cf4455b1b863a28d.tar.gz tcl-9d34f16944286a9d17163ef7cf4455b1b863a28d.tar.bz2 |
Rolled back changes to change the prototype of
Tcl_ListObjGetElements()
Diffstat (limited to 'generic/tclListObj.c')
-rw-r--r-- | generic/tclListObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclListObj.c b/generic/tclListObj.c index 7b00f6c..bb0aa2b 100644 --- a/generic/tclListObj.c +++ b/generic/tclListObj.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclListObj.c,v 1.6 1999/08/10 17:35:19 redman Exp $ + * RCS: @(#) $Id: tclListObj.c,v 1.7 1999/08/10 22:45:11 redman Exp $ */ #include "tclInt.h" @@ -305,7 +305,7 @@ Tcl_ListObjGetElements(interp, listPtr, objcPtr, objvPtr) * is to be returned. */ int *objcPtr; /* Where to store the count of objects * referenced by objv. */ - Tcl_Obj * CONST **objvPtr; /* Where to store the pointer to an array + Tcl_Obj ***objvPtr; /* Where to store the pointer to an array * of pointers to the list's objects. */ { register List *listRepPtr; |