summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-02-10 13:32:22 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-02-10 13:32:22 (GMT)
commit6c78de9b6653cdfb497937cfa98a389a6a653dea (patch)
tree8e466a252685a3ebdcd209eaca3fe31900e4c4ef
parent71073845ccadf428914c16d0163073f941114c72 (diff)
downloadtcl-6c78de9b6653cdfb497937cfa98a389a6a653dea.zip
tcl-6c78de9b6653cdfb497937cfa98a389a6a653dea.tar.gz
tcl-6c78de9b6653cdfb497937cfa98a389a6a653dea.tar.bz2
* doc/append.n: Return value was not documented. [Bug 683188]
-rw-r--r--ChangeLog4
-rw-r--r--doc/append.n4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 67b3781..165dd4c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-02-10 Donal K. Fellows <fellowsd@cs.man.ac.uk>
+
+ * doc/append.n: Return value was not documented. [Bug 683188]
+
2003-02-10 Vince Darley <vincentdarley@users.sourceforge.net>
* doc/FileSystem.3:
diff --git a/doc/append.n b/doc/append.n
index 4e86f90..5f1a3c7 100644
--- a/doc/append.n
+++ b/doc/append.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: append.n,v 1.3 2000/09/07 14:27:45 poenitz Exp $
+'\" RCS: @(#) $Id: append.n,v 1.4 2003/02/10 13:32:22 dkf Exp $
'\"
.so man.macros
.TH append n "" Tcl "Tcl Built-In Commands"
@@ -23,6 +23,8 @@ Append all of the \fIvalue\fR arguments to the current value
of variable \fIvarName\fR. If \fIvarName\fR doesn't exist,
it is given a value equal to the concatenation of all the
\fIvalue\fR arguments.
+The result of this command is the new value stored in variable
+\fIvarName\fR.
This command provides an efficient way to build up long
variables incrementally.
For example, ``\fBappend a $b\fR'' is much more efficient than