summaryrefslogtreecommitdiffstats
path: root/doc/concat.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-10-25 14:07:32 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-10-25 14:07:32 (GMT)
commit7b06bea8377025d0d73731d4332f1140468cf591 (patch)
tree0e660cbc492cc517cdb96ccda600880206d36ea7 /doc/concat.n
parented0c8a767f3b6a927a1e1d12964173a66341caee (diff)
downloadtcl-7b06bea8377025d0d73731d4332f1140468cf591.zip
tcl-7b06bea8377025d0d73731d4332f1140468cf591.tar.gz
tcl-7b06bea8377025d0d73731d4332f1140468cf591.tar.bz2
More GOOBE quoting
Diffstat (limited to 'doc/concat.n')
-rw-r--r--doc/concat.n20
1 files changed, 15 insertions, 5 deletions
diff --git a/doc/concat.n b/doc/concat.n
index db7081f..dba0b39 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.7 2007/10/24 14:29:38 dkf Exp $
+'\" RCS: @(#) $Id: concat.n,v 1.8 2007/10/25 14:07:32 dkf Exp $
'\"
.so man.macros
.TH concat n 8.3 Tcl "Tcl Built-In Commands"
@@ -30,20 +30,30 @@ Although \fBconcat\fR will concatenate lists (so the command:
.CS
\fBconcat\fR a b {c d e} {f {g h}}
.CE
-will return "\fBa b c d e f {g h}\fR" as its result), it will also
+will return
+.QW "\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
\fBconcat\fR " a b {c " d " e} f"
.CE
-will return "\fBa b {c d e} f\fR" as its result.
+will return
+.QW "\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
\fBconcat\fR "a b c" { d e f }
.CE
-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).
+will return
+.QW "\fBa b c d e f\fR"
+(i.e. with three spaces between the
+.QW \fBa\fR ,
+the
+.QW \fBb\fR
+and the
+.QW \fBc\fR ).
.SH "SEE ALSO"
append(n), eval(n)
.SH KEYWORDS