diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-01-24 15:40:34 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-01-24 15:40:34 (GMT) |
commit | 831e85b8f62b86995c4a439cccf5ecdc8425cea6 (patch) | |
tree | 9050f04456f8715d051bf3accf2d5a5c20e6a3f1 | |
parent | d46657f1f739cdf35daf961140c922498eb151f7 (diff) | |
parent | 5d9db7d9acbe609d68bb6f81daeaa5abeea212aa (diff) | |
download | tcl-831e85b8f62b86995c4a439cccf5ecdc8425cea6.zip tcl-831e85b8f62b86995c4a439cccf5ecdc8425cea6.tar.gz tcl-831e85b8f62b86995c4a439cccf5ecdc8425cea6.tar.bz2 |
Merge 8.6
-rw-r--r-- | doc/ListObj.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ListObj.3 b/doc/ListObj.3 index 67721c9..c5c1dc7 100644 --- a/doc/ListObj.3 +++ b/doc/ListObj.3 @@ -28,7 +28,7 @@ int \fBTcl_ListObjGetElements\fR(\fIinterp, listPtr, objcPtr, objvPtr\fR) .sp int -\fBTcl_ListObjLength\fR(\fIinterp, listPtr, intPtr\fR) +\fBTcl_ListObjLength\fR(\fIinterp, listPtr, lengthPtr\fR) .sp int \fBTcl_ListObjIndex\fR(\fIinterp, listPtr, index, objPtrPtr\fR) @@ -76,7 +76,7 @@ An array of pointers to values. \fBTcl_NewListObj\fR will insert these values into a new list value and \fBTcl_ListObjReplace\fR will insert them into an existing \fIlistPtr\fR. Each value will become a separate list element. -.AP int *intPtr out +.AP int *lengthPtr out Points to location where \fBTcl_ListObjLength\fR stores the length of the list. .AP int index in @@ -162,7 +162,7 @@ Otherwise it returns \fBTCL_OK\fR after storing the count and array pointer. .PP \fBTcl_ListObjLength\fR returns the number of elements in the list value referenced by \fIlistPtr\fR. -It returns this count by storing an integer in the address \fIintPtr\fR. +It returns this count by storing an integer in the address \fIlengthPtr\fR. If the value is not already a list value, \fBTcl_ListObjLength\fR will attempt to convert it to one; if the conversion fails, it returns \fBTCL_ERROR\fR |