summaryrefslogtreecommitdiffstats
path: root/tcl8.6/doc/list.n
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-10-17 19:50:58 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-10-17 19:50:58 (GMT)
commit9b7a6c3507ea3383c60aaecb29f873c9b590ccca (patch)
tree82ce31ebd8f46803d969034f5aa3db8d7974493c /tcl8.6/doc/list.n
parent87fca7325b97005eb44dcf3e198277640af66115 (diff)
downloadblt-9b7a6c3507ea3383c60aaecb29f873c9b590ccca.zip
blt-9b7a6c3507ea3383c60aaecb29f873c9b590ccca.tar.gz
blt-9b7a6c3507ea3383c60aaecb29f873c9b590ccca.tar.bz2
rm tcl/tk 8.6.7
Diffstat (limited to 'tcl8.6/doc/list.n')
-rw-r--r--tcl8.6/doc/list.n56
1 files changed, 0 insertions, 56 deletions
diff --git a/tcl8.6/doc/list.n b/tcl8.6/doc/list.n
deleted file mode 100644
index c2797f3..0000000
--- a/tcl8.6/doc/list.n
+++ /dev/null
@@ -1,56 +0,0 @@
-'\"
-'\" Copyright (c) 1993 The Regents of the University of California.
-'\" Copyright (c) 1994-1996 Sun Microsystems, Inc.
-'\" Copyright (c) 2001 Kevin B. Kenny <kennykb@acm.org>. All rights reserved.
-'\"
-'\" See the file "license.terms" for information on usage and redistribution
-'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-'\"
-.TH list n "" Tcl "Tcl Built-In Commands"
-.so man.macros
-.BS
-'\" Note: do not modify the .SH NAME line immediately below!
-.SH NAME
-list \- Create a list
-.SH SYNOPSIS
-\fBlist \fR?\fIarg arg ...\fR?
-.BE
-.SH DESCRIPTION
-.PP
-This command returns a list comprised of all the \fIarg\fRs,
-or an empty string if no \fIarg\fRs are specified.
-Braces and backslashes get added as necessary, so that the \fBlindex\fR command
-may be used on the result to re-extract the original arguments, and also
-so that \fBeval\fR may be used to execute the resulting list, with
-\fIarg1\fR comprising the command's name and the other \fIarg\fRs comprising
-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.
-.SH EXAMPLE
-.PP
-The command
-.PP
-.CS
-\fBlist\fR a b "c d e " " f {g h}"
-.CE
-.PP
-will return
-.PP
-.CS
-\fBa b {c d e } { f {g h}}\fR
-.CE
-.PP
-while \fBconcat\fR with the same arguments will return
-.PP
-.CS
-\fBa b c d e f {g h}\fR
-.CE
-.SH "SEE ALSO"
-lappend(n), lindex(n), linsert(n), llength(n), lrange(n),
-lrepeat(n),
-lreplace(n), lsearch(n), lset(n), lsort(n)
-.SH KEYWORDS
-element, list, quoting
-'\"Local Variables:
-'\"mode: nroff
-'\"End: