summaryrefslogtreecommitdiffstats
path: root/doc/lreplace.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-10-27 12:53:22 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-10-27 12:53:22 (GMT)
commit4c2d0f20bfa9108949678cf49bfdc58eedc7bb93 (patch)
treeb3ce80d2f183dc1bd02185c2bf44738b4377c9ed /doc/lreplace.n
parentcd7e7ec95e76bcb5bf66d7cc9e6d60aad70dba07 (diff)
downloadtcl-4c2d0f20bfa9108949678cf49bfdc58eedc7bb93.zip
tcl-4c2d0f20bfa9108949678cf49bfdc58eedc7bb93.tar.gz
tcl-4c2d0f20bfa9108949678cf49bfdc58eedc7bb93.tar.bz2
More minor doc fixes
Diffstat (limited to 'doc/lreplace.n')
-rw-r--r--doc/lreplace.n13
1 files changed, 6 insertions, 7 deletions
diff --git a/doc/lreplace.n b/doc/lreplace.n
index 6ddec46..0a9bf6a 100644
--- a/doc/lreplace.n
+++ b/doc/lreplace.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: lreplace.n,v 1.9 2004/04/16 22:20:58 dkf Exp $
+'\" RCS: @(#) $Id: lreplace.n,v 1.10 2004/10/27 12:53:22 dkf Exp $
'\"
.so man.macros
.TH lreplace n 7.4 Tcl "Tcl Built-In Commands"
@@ -43,25 +43,24 @@ Each \fIelement\fR argument will become a separate element of
the list. If no \fIelement\fR arguments are specified, then the elements
between \fIfirst\fR and \fIlast\fR are simply deleted. If \fIlist\fR
is empty, any \fIelement\fR arguments are added to the end of the list.
-
.SH EXAMPLES
Replacing an element of a list with another:
.CS
-% lreplace {a b c d e} 1 1 foo
+% \fBlreplace\fR {a b c d e} 1 1 foo
a foo c d e
.CE
-
+.PP
Replacing two elements of a list with three:
.CS
-% lreplace {a b c d e} 1 2 three more elements
+% \fBlreplace\fR {a b c d e} 1 2 three more elements
a three more elements d e
.CE
-
+.PP
Deleting the last element from a list in a variable:
.CS
% set var {a b c d e}
a b c d e
-% set var [lreplace $var end end]
+% set var [\fBlreplace\fR $var end end]
a b c d
.CE