summaryrefslogtreecommitdiffstats
path: root/doc/lappend.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-05-18 20:59:24 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-05-18 20:59:24 (GMT)
commitef2d20c14f37350d6124e97746465aba1ad7dd3d (patch)
tree64bd50e9d6928c8350d040a3c7cfc1922d627d31 /doc/lappend.n
parent8b48d07c9f4e33a393bb48b3e91cf2a2f9748830 (diff)
downloadtcl-ef2d20c14f37350d6124e97746465aba1ad7dd3d.zip
tcl-ef2d20c14f37350d6124e97746465aba1ad7dd3d.tar.gz
tcl-ef2d20c14f37350d6124e97746465aba1ad7dd3d.tar.bz2
Whitespace fix.
Diffstat (limited to 'doc/lappend.n')
-rw-r--r--doc/lappend.n4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/lappend.n b/doc/lappend.n
index 90cf6f9..732370b 100644
--- a/doc/lappend.n
+++ b/doc/lappend.n
@@ -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: lappend.n,v 1.7 2004/04/16 22:20:58 dkf Exp $
+'\" RCS: @(#) $Id: lappend.n,v 1.8 2004/05/18 20:59:24 dkf Exp $
'\"
.so man.macros
.TH lappend n "" Tcl "Tcl Built-In Commands"
@@ -31,10 +31,8 @@ This command provides a relatively efficient way to build up
large lists. For example, ``\fBlappend a $b\fR'' is much
more efficient than ``\fBset a [concat $a [list $b]]\fR'' when
\fB$a\fR is long.
-
.SH EXAMPLE
Using \fBlappend\fR to build up a list of numbers.
-
.CS
% set var 1
1