diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2023-04-16 17:05:07 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2023-04-16 17:05:07 (GMT) |
commit | e645e12652b53c5aa9b86783f6b7b9d3db3be9ea (patch) | |
tree | 79e088bf7c27a97bfbb26c31686e6214d98003c5 /doc/ParseCmd.3 | |
parent | c899e7770147960aafc497624551c39fff43471c (diff) | |
download | tcl-e645e12652b53c5aa9b86783f6b7b9d3db3be9ea.zip tcl-e645e12652b53c5aa9b86783f6b7b9d3db3be9ea.tar.gz tcl-e645e12652b53c5aa9b86783f6b7b9d3db3be9ea.tar.bz2 |
Update manpages for TIP 660. Also one size_t -> Tcl_Size change in public API
Diffstat (limited to 'doc/ParseCmd.3')
-rw-r--r-- | doc/ParseCmd.3 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/ParseCmd.3 b/doc/ParseCmd.3 index 5235325..0919299 100644 --- a/doc/ParseCmd.3 +++ b/doc/ParseCmd.3 @@ -45,7 +45,7 @@ For \fBTcl_EvalTokensStandard\fR, determines the context for evaluating the script and also is used for error reporting; must not be NULL. .AP "const char" *start in Pointer to first character in string to parse. -.AP size_t numBytes in +.AP Tcl_Size numBytes in Number of bytes in string to parse, not including any terminating null character. If less than 0 then the script consists of all characters following \fIstart\fR up to the first null character. @@ -196,20 +196,20 @@ return parse information in two data structures, Tcl_Parse and Tcl_Token: .CS typedef struct Tcl_Parse { const char *\fIcommentStart\fR; - size_t \fIcommentSize\fR; + Tcl_Size \fIcommentSize\fR; const char *\fIcommandStart\fR; - size_t \fIcommandSize\fR; - size_t \fInumWords\fR; + Tcl_Size \fIcommandSize\fR; + Tcl_Size \fInumWords\fR; Tcl_Token *\fItokenPtr\fR; - size_t \fInumTokens\fR; + Tcl_Size \fInumTokens\fR; ... } \fBTcl_Parse\fR; typedef struct Tcl_Token { int \fItype\fR; const char *\fIstart\fR; - size_t \fIsize\fR; - size_t \fInumComponents\fR; + Tcl_Size \fIsize\fR; + Tcl_Size \fInumComponents\fR; } \fBTcl_Token\fR; .CE .PP |