diff options
author | dkf <dkf@noemail.net> | 2004-10-27 09:35:36 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2004-10-27 09:35:36 (GMT) |
commit | 739cb7dee1505acf27c9efe8995d76ecbf76a098 (patch) | |
tree | 2f3f979845a50074bb8e2a0687cd98cb14ae6c26 /doc/concat.n | |
parent | c57d58e1ba48385d637a0409bad37abedf96f604 (diff) | |
download | tcl-739cb7dee1505acf27c9efe8995d76ecbf76a098.zip tcl-739cb7dee1505acf27c9efe8995d76ecbf76a098.tar.gz tcl-739cb7dee1505acf27c9efe8995d76ecbf76a098.tar.bz2 |
Backport many doc fixes
FossilOrigin-Name: 644d6ac51f656ccdc504748009d1fe4c2c69a0f5
Diffstat (limited to 'doc/concat.n')
-rw-r--r-- | doc/concat.n | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/doc/concat.n b/doc/concat.n index 52f4094..aaabe6e 100644 --- a/doc/concat.n +++ b/doc/concat.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: concat.n,v 1.4 2002/07/01 10:50:21 dkf Exp $ +'\" RCS: @(#) $Id: concat.n,v 1.4.2.1 2004/10/27 09:35:38 dkf Exp $ '\" .so man.macros .TH concat n 8.3 Tcl "Tcl Built-In Commands" @@ -20,28 +20,30 @@ concat \- Join lists together .SH DESCRIPTION .PP This command joins each of its arguments together with spaces after -trimming leading and trailing spaces from each of them. If all the +trimming leading and trailing white-space from each of them. If all the arguments are lists, this has the same effect as concatenating them into a single list. -It permits any number of arguments. For example, the command +It permits any number of arguments; +if no \fIarg\fRs are supplied, the result is an empty string. +.SH EXAMPLES +Although \fBconcat\fR will concatenate lists (so the command: .CS -\fBconcat a b {c d e} {f {g h}}\fR +\fBconcat\fR a b {c d e} {f {g h}} .CE -will return +will return "\fBa b c d e f {g h}\fR" as its result), it will also +concatenate things that are not lists, and hence the command: .CS -\fBa b c d e f {g h}\fR +\fBconcat\fR " a b {c " d " e} f" .CE -as its result, and -.CS -\fBconcat " a b {c " d " e} f"\fR -.CE -will return +will return "\fBa b {c d e} f\fR" as its result. +.PP +Note that the concatenation does not remove spaces from the middle of +its arguments, so the command: .CS -\fBa b {c d e} f\fR +\fBconcat\fR "a b c" { d e f } .CE -as its result. -.PP -If no \fIarg\fRs are supplied, the result is an empty string. +will return "\fBa b c d e f\fR" (i.e. with three spaces between +the \fBa\fR, the \fBb\fR and the \fBc\fR). .SH "SEE ALSO" append(n), eval(n) |