summaryrefslogtreecommitdiffstats
path: root/generic/tclAbstractList.h
diff options
context:
space:
mode:
authorgriffin <briang42@easystreet.net>2022-10-19 04:35:15 (GMT)
committergriffin <briang42@easystreet.net>2022-10-19 04:35:15 (GMT)
commit0bc040dc409a30e0269975baec7cca5ac29a99ae (patch)
treedecf200a4ee3f051a21e58b442fc6320104b7bf5 /generic/tclAbstractList.h
parentfb722eca5699fe89d2738fd6fc79f57ce9959026 (diff)
downloadtcl-0bc040dc409a30e0269975baec7cca5ac29a99ae.zip
tcl-0bc040dc409a30e0269975baec7cca5ac29a99ae.tar.gz
tcl-0bc040dc409a30e0269975baec7cca5ac29a99ae.tar.bz2
More work on lset support in AbstractLists
Diffstat (limited to 'generic/tclAbstractList.h')
-rw-r--r--generic/tclAbstractList.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclAbstractList.h b/generic/tclAbstractList.h
index 561d7ba..1c92b42 100644
--- a/generic/tclAbstractList.h
+++ b/generic/tclAbstractList.h
@@ -41,7 +41,8 @@ int Tcl_AbstractListObjGetElements(Tcl_Interp *interp, Tcl_Obj *objPtr, int
Tcl_Obj ***objvPtr);
Tcl_Obj * Tcl_AbstractListObjCopy(Tcl_Interp *interp, Tcl_Obj *listPtr);
void * Tcl_AbstractListGetConcreteRep(Tcl_Obj *objPtr);
-
+Tcl_Obj * Tcl_AbstractListSetElement(Tcl_Interp *interp, Tcl_Obj *listPtr,
+ Tcl_Obj *indicies, Tcl_Obj *valueObj);
#endif