diff options
author | dgp <dgp@users.sourceforge.net> | 2023-04-24 14:22:07 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2023-04-24 14:22:07 (GMT) |
commit | 277effbc04fce23d5e3daf3730415b0dc1c43bc9 (patch) | |
tree | bb568f4bb4f3fa82e281a20db2c6888bc9559c22 | |
parent | 642792b1c24ede80b813230b3d12f524f25b1d90 (diff) | |
download | tcl-277effbc04fce23d5e3daf3730415b0dc1c43bc9.zip tcl-277effbc04fce23d5e3daf3730415b0dc1c43bc9.tar.gz tcl-277effbc04fce23d5e3daf3730415b0dc1c43bc9.tar.bz2 |
TIP 422 eliminated va_list arguments from the API of Tcl 9.
However, some of the documentation lingered on. No more.
-rw-r--r-- | doc/AddErrInfo.3 | 3 | ||||
-rw-r--r-- | doc/Panic.3 | 4 | ||||
-rw-r--r-- | doc/SetResult.3 | 3 | ||||
-rw-r--r-- | doc/StringObj.3 | 3 |
4 files changed, 0 insertions, 13 deletions
diff --git a/doc/AddErrInfo.3 b/doc/AddErrInfo.3 index 7290a27..1b3a848 100644 --- a/doc/AddErrInfo.3 +++ b/doc/AddErrInfo.3 @@ -67,9 +67,6 @@ The \fB\-errorcode\fR return option will be set to this value. .AP "const char" *element in String to record as one element of the \fB\-errorcode\fR return option. Last \fIelement\fR argument must be NULL. -.AP va_list argList in -An argument list which must have been initialized using -\fBva_start\fR, and cleared using \fBva_end\fR. .AP int lineNum The line number of a script where an error occurred. .AP "const char" *script in diff --git a/doc/Panic.3 b/doc/Panic.3 index e8a5cb8..2f5d19c 100644 --- a/doc/Panic.3 +++ b/doc/Panic.3 @@ -27,10 +27,6 @@ void A printf-style format string. .AP "" arg in Arguments matching the format string. -.AP va_list argList in -An argument list of arguments matching the format string. -Must have been initialized using \fBva_start\fR, -and cleared using \fBva_end\fR. .AP Tcl_PanicProc *panicProc in Procedure to report fatal error message and abort. .BE diff --git a/doc/SetResult.3 b/doc/SetResult.3 index 9be3ef0..fdc4af2 100644 --- a/doc/SetResult.3 +++ b/doc/SetResult.3 @@ -45,9 +45,6 @@ to the existing result of \fIinterp\fR. .AP Tcl_FreeProc *freeProc in Pointer to a procedure to call to release storage at \fIresult\fR. -.AP va_list argList in -An argument list which must have been initialized using -\fBva_start\fR, and cleared using \fBva_end\fR. .AP Tcl_Interp *sourceInterp in The interpreter to transfer the result and return options from. .AP Tcl_Interp *targetInterp in diff --git a/doc/StringObj.3 b/doc/StringObj.3 index d835140..3ced3c4 100644 --- a/doc/StringObj.3 +++ b/doc/StringObj.3 @@ -123,9 +123,6 @@ The location where \fBTcl_GetStringFromObj\fR will store the length of a value's string representation. May be (int *)NULL when not used. .AP "const char" *string in Null-terminated string value to append to \fIobjPtr\fR. -.AP va_list argList in -An argument list which must have been initialized using -\fBva_start\fR, and cleared using \fBva_end\fR. .AP Tcl_Size limit in Maximum number of bytes to be appended. .AP "const char" *ellipsis in |