summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2002-08-28 14:46:49 (GMT)
committerdkf <dkf@noemail.net>2002-08-28 14:46:49 (GMT)
commit02b99c49fca44c562679649b6dc001f493cbe0f9 (patch)
tree05002feddd755c1079bc061403824fe4bc9beccf
parente71163bc609dac999c409651a523defce4d6c744 (diff)
downloadtcl-02b99c49fca44c562679649b6dc001f493cbe0f9.zip
tcl-02b99c49fca44c562679649b6dc001f493cbe0f9.tar.gz
tcl-02b99c49fca44c562679649b6dc001f493cbe0f9.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. FossilOrigin-Name: d3b5324f96e4d475d27ba9a67a4288509369b6f3
-rw-r--r--ChangeLog2
-rw-r--r--doc/eval.n6
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f805552..13e28e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2002-08-28 Donal K. Fellows <fellowsd@cs.man.ac.uk>
+ * doc/eval.n: Added mention of list command and corrected "SEE ALSO".
+
* unix/configure.in: Cache handling of ac_cv_type_socklen_t was
wrong. [Bug 600931] reported by John Ellson. Fixed by putting the
brackets where they belong.
diff --git a/doc/eval.n b/doc/eval.n
index 9aa010f..76c37f2 100644
--- a/doc/eval.n
+++ b/doc/eval.n
@@ -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)