diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-10-29 11:28:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-10-29 11:28:49 (GMT) |
commit | 18476c905183d0b6cfbac7a85e8543265cf9fae0 (patch) | |
tree | db7d2280643a39b2805c9c90cc8dffc8673fc107 /doc/ParseCmd.3 | |
parent | 77f37026419a7e05c71c233d137412f77aee2825 (diff) | |
download | tcl-18476c905183d0b6cfbac7a85e8543265cf9fae0.zip tcl-18476c905183d0b6cfbac7a85e8543265cf9fae0.tar.gz tcl-18476c905183d0b6cfbac7a85e8543265cf9fae0.tar.bz2 |
GOOBE the docs some more.
Diffstat (limited to 'doc/ParseCmd.3')
-rw-r--r-- | doc/ParseCmd.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ParseCmd.3 b/doc/ParseCmd.3 index aac5cf7..c3a9aef 100644 --- a/doc/ParseCmd.3 +++ b/doc/ParseCmd.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: ParseCmd.3,v 1.25 2007/10/28 14:17:39 dkf Exp $ +'\" RCS: @(#) $Id: ParseCmd.3,v 1.26 2007/10/29 11:28:50 dkf Exp $ '\" .so man.macros .TH Tcl_ParseCommand 3 8.3 Tcl "Tcl Library Procedures" @@ -159,7 +159,7 @@ returns \fBTCL_OK\fR and fills in the structure pointed to by \fIparsePtr\fR with information about the structure of the variable name (see below for details). If an error occurs while parsing the command then \fBTCL_ERROR\fR is returned, an -error message is left in \fIinterp\fR's result (if \fIinterp\fR isn't +error message is left in \fIinterp\fR's result (if \fIinterp\fR is not NULL), and no information is left at \fI*parsePtr\fR. .PP \fBTcl_ParseVar\fR parse a Tcl variable reference such as \fB$abc\fR @@ -364,7 +364,7 @@ can be used to determine the number of operands. A binary operator such as \fB*\fR is followed by two \fBTCL_TOKEN_SUB_EXPR\fR tokens that describe its operands. -A unary operator like \fB-\fR +A unary operator like \fB\-\fR is followed by a single \fBTCL_TOKEN_SUB_EXPR\fR token for its operand. If the operator is a math function such as \fBlog10\fR, |