diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-08-28 14:46:50 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-08-28 14:46:50 (GMT) |
commit | 3932d4560e1130460563ce7f09cbdc6e8e5fe204 (patch) | |
tree | 05002feddd755c1079bc061403824fe4bc9beccf /doc | |
parent | 46ba61c2807ce86a75016cf0ebf74898ef09ff26 (diff) | |
download | tcl-3932d4560e1130460563ce7f09cbdc6e8e5fe204.zip tcl-3932d4560e1130460563ce7f09cbdc6e8e5fe204.tar.gz tcl-3932d4560e1130460563ce7f09cbdc6e8e5fe204.tar.bz2 |
More people should automatically reach for the list command in conjunction with
the eval command following this doc change. Also added missing character in
SEE ALSO reference.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/eval.n | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: eval.n,v 1.3 2000/09/07 14:27:47 poenitz Exp $ +'\" RCS: @(#) $Id: eval.n,v 1.4 2002/08/28 14:46:50 dkf Exp $ '\" .so man.macros .TH eval n "" Tcl "Tcl Built-In Commands" @@ -25,9 +25,11 @@ script containing one or more commands. fashion as the \fBconcat\fR command, passes the concatenated string to the Tcl interpreter recursively, and returns the result of that evaluation (or any error generated by it). +Note that the \fBlist\fR command quotes sequences of words in such a +way that they are not further expanded by the \fBeval\fR command. .SH KEYWORDS concatenate, evaluate, script .SH "SEE ALSO" -catch(n), concat(n), error(n), subs(n), tclvars(n) +catch(n), concat(n), error(n), list(n), subst(n), tclvars(n) |