diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-17 15:16:05 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-17 15:16:05 (GMT) |
commit | 75b04e4a226527d290affcdb2ed3ef4e8982b868 (patch) | |
tree | bd7316900a687f387c100700458d93de99f8ac75 /doc/list.n | |
parent | ca9f53824153cabd6f7cf69459b76b2abfff52db (diff) | |
download | tcl-75b04e4a226527d290affcdb2ed3ef4e8982b868.zip tcl-75b04e4a226527d290affcdb2ed3ef4e8982b868.tar.gz tcl-75b04e4a226527d290affcdb2ed3ef4e8982b868.tar.bz2 |
Example updates/additions.
Diffstat (limited to 'doc/list.n')
-rw-r--r-- | doc/list.n | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -6,7 +6,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: list.n,v 1.8 2003/08/11 13:26:13 dkf Exp $ +'\" RCS: @(#) $Id: list.n,v 1.9 2004/05/17 15:16:13 dkf Exp $ '\" .so man.macros .TH list n "" Tcl "Tcl Built-In Commands" @@ -29,13 +29,14 @@ so that \fBeval\fR may be used to execute the resulting list, with its arguments. \fBList\fR produces slightly different results than \fBconcat\fR: \fBconcat\fR removes one level of grouping before forming the list, while \fBlist\fR works directly from the original arguments. -For example, the command +.SH EXAMPLE +The command .CS -\fBlist a b {c d e} {f {g h}}\fR +list a b "c d e " " f {g h}" .CE will return .CS -\fBa b {c d e} {f {g h}}\fR +\fBa b {c d e } { f {g h}}\fR .CE while \fBconcat\fR with the same arguments will return .CS |