summaryrefslogtreecommitdiffstats
path: root/doc/lsort.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-07-04 14:45:19 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-07-04 14:45:19 (GMT)
commite5f7a7f23ddbcd485a524a6fd1f60c2f6787c794 (patch)
tree94204aa6e7eb0c629cb3f07f972124168ebd1e67 /doc/lsort.n
parent76681ff9cf616e99686fb280dc3e3f2b891334d9 (diff)
downloadtcl-e5f7a7f23ddbcd485a524a6fd1f60c2f6787c794.zip
tcl-e5f7a7f23ddbcd485a524a6fd1f60c2f6787c794.tar.gz
tcl-e5f7a7f23ddbcd485a524a6fd1f60c2f6787c794.tar.bz2
Remove over-wide lines from nroff output.
Diffstat (limited to 'doc/lsort.n')
-rw-r--r--doc/lsort.n14
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/lsort.n b/doc/lsort.n
index 09962d2..5eda016 100644
--- a/doc/lsort.n
+++ b/doc/lsort.n
@@ -7,7 +7,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: lsort.n,v 1.21 2005/06/01 11:00:33 dkf Exp $
+'\" RCS: @(#) $Id: lsort.n,v 1.22 2007/07/04 14:45:19 dkf Exp $
'\"
.so man.macros
.TH lsort n 8.5 Tcl "Tcl Built-In Commands"
@@ -83,20 +83,26 @@ each sublist
For example,
.RS
.CS
-lsort -integer -index 1 {{First 24} {Second 18} {Third 30}}
+lsort -integer -index 1 \\
+ {{First 24} {Second 18} {Third 30}}
.CE
returns \fB{Second 18} {First 24} {Third 30}\fR, and
'\"
'\" This example is from the test suite!
'\"
.CS
-lsort -index end-1 {{a 1 e i} {b 2 3 f g} {c 4 5 6 d h}}
+lsort -index end-1 \\
+ {{a 1 e i} {b 2 3 f g} {c 4 5 6 d h}}
.CE
returns \fB{c 4 5 6 d h} {a 1 e i} {b 2 3 f g}\fR,
.VS 8.5
and
.CS
-lsort -index {0 1} {{{b i g} 12345} {{d e m o} 34512} {{c o d e} 54321}}
+lsort -index {0 1} {
+ {{b i g} 12345}
+ {{d e m o} 34512}
+ {{c o d e} 54321}
+}
.CE
returns \fB{{d e m o} 34512} {{b i g} 12345} {{c o d e} 54321}\fR
(because \fBe\fR sorts before \fBi\fR which sorts before \fBo\fR.)