summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2002-07-23 18:17:12 (GMT)
committerjenglish <jenglish@flightlab.com>2002-07-23 18:17:12 (GMT)
commit1352940f08971cbce5cf2f3de927711dacf33745 (patch)
treed3d2a6a51b834fb2bab5f5363e1e6fb3949932b0
parent136715c4845d937d76e91052aadae60d2104356e (diff)
downloadtcl-1352940f08971cbce5cf2f3de927711dacf33745.zip
tcl-1352940f08971cbce5cf2f3de927711dacf33745.tar.gz
tcl-1352940f08971cbce5cf2f3de927711dacf33745.tar.bz2
Man page updates from Larry Virden.
-rw-r--r--ChangeLog8
-rw-r--r--doc/OpenFileChnl.34
-rw-r--r--doc/http.n4
-rwxr-xr-xdoc/lset.n10
-rw-r--r--doc/open.n4
-rw-r--r--doc/tclsh.14
6 files changed, 22 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e753b0..89f72fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2002-07-23 Joe English <jenglish@users.sourceforge.net>
+ * doc/OpenFileChnl.3: (Updates from Larry Virden)
+ * doc/open.n:
+ * doc/tclsh.1: Fix section numbers in Unix man page references.
+ * doc/lset.n: In EXAMPLES section, include command to set the
+ initial value used in subsequent examples.
+ * doc/http.n: Package version updated to 2.4.
+
2002-07-23 Mo DeJong <mdejong@users.sourceforge.net>
* unix/configure: Regen.
diff --git a/doc/OpenFileChnl.3 b/doc/OpenFileChnl.3
index 2a4374e..9fe8136 100644
--- a/doc/OpenFileChnl.3
+++ b/doc/OpenFileChnl.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: OpenFileChnl.3,v 1.19 2002/07/01 18:24:39 jenglish Exp $
+'\" RCS: @(#) $Id: OpenFileChnl.3,v 1.20 2002/07/23 18:17:12 jenglish Exp $
.so man.macros
.TH Tcl_OpenFileChannel 3 8.3 Tcl "Tcl Library Procedures"
.BS
@@ -672,7 +672,7 @@ platforms. On the Macintosh platform, the handle is a file reference
number as returned from \fBHOpenDF\fR.
.SH "SEE ALSO"
-DString(3), fconfigure(n), filename(n), fopen(2), Tcl_CreateChannel(3)
+DString(3), fconfigure(n), filename(n), fopen(3), Tcl_CreateChannel(3)
.SH KEYWORDS
access point, blocking, buffered I/O, channel, channel driver, end of file,
diff --git a/doc/http.n b/doc/http.n
index 2189553..e9501b7 100644
--- a/doc/http.n
+++ b/doc/http.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: http.n,v 1.17 2002/07/01 18:24:39 jenglish Exp $
+'\" RCS: @(#) $Id: http.n,v 1.18 2002/07/23 18:17:12 jenglish Exp $
'\"
.so man.macros
.TH "http" n 2.4 http "Tcl Bundled Packages"
@@ -110,7 +110,7 @@ non-empty.
.TP
\fB\-useragent\fP \fIstring\fP
The value of the User-Agent header in the HTTP request. The default
-is \fB"Tcl http client package 2.2."\fR
+is \fB"Tcl http client package 2.4."\fR
.RE
.TP
\fB::http::geturl\fP \fIurl\fP ?\fIoptions\fP?
diff --git a/doc/lset.n b/doc/lset.n
index 17b97b3..16ed782 100755
--- a/doc/lset.n
+++ b/doc/lset.n
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: lset.n,v 1.3 2002/07/01 18:24:39 jenglish Exp $
+'\" RCS: @(#) $Id: lset.n,v 1.4 2002/07/23 18:17:12 jenglish Exp $
'\"
.so man.macros
.TH lset n 8.4 Tcl "Tcl Built-In Commands"
@@ -76,7 +76,8 @@ of a list. If an index is outside the permitted range, an error is reported.
.SH EXAMPLES
In each of these examples, the initial value of \fIx\fP is:
.CS
-{a b c} {d e f} {g h i}
+set x [list [list a b c] [list d e f] [list g h i]]
+ => {a b c} {d e f} {g h i}
.CE
The indicated return value also becomes the new value of \fIx\fP.
.CS
@@ -92,7 +93,9 @@ lset x {2 3} j
.CE
In the following examples, the initial value of \fIx\fP is:
.CS
-{{a b} {c d}} {{e f} {g h}}
+set x [list [list [list a b] [list c d]] \e
+ [list [list e f] [list g h]]]
+ => {{a b} {c d}} {{e f} {g h}}
.CE
The indicated return value also becomes the new value of \fIx\fP.
.CS
@@ -105,4 +108,3 @@ lsort(n), lrange(n), lreplace(n)
.SH KEYWORDS
element, index, list, replace, set
-.VE
diff --git a/doc/open.n b/doc/open.n
index 63d9eeb..eca6607 100644
--- a/doc/open.n
+++ b/doc/open.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: open.n,v 1.15 2002/07/01 18:24:39 jenglish Exp $
+'\" RCS: @(#) $Id: open.n,v 1.16 2002/07/23 18:17:12 jenglish Exp $
'\"
.so man.macros
.TH open n 8.3 Tcl "Tcl Built-In Commands"
@@ -233,7 +233,7 @@ applications on the various platforms
.SH "SEE ALSO"
file(n), close(n), filename(n), fconfigure(n), gets(n), read(n),
-puts(n), exec(n), pid(n), fopen(1)
+puts(n), exec(n), pid(n), fopen(3)
.SH KEYWORDS
access mode, append, create, file, non-blocking, open, permissions,
diff --git a/doc/tclsh.1 b/doc/tclsh.1
index 8341c3d..fe55148 100644
--- a/doc/tclsh.1
+++ b/doc/tclsh.1
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: tclsh.1,v 1.6 2001/12/10 15:50:47 dgp Exp $
+'\" RCS: @(#) $Id: tclsh.1,v 1.7 2002/07/23 18:17:12 jenglish Exp $
'\"
.so man.macros
.TH tclsh 1 "" Tcl "Tcl Applications"
@@ -128,7 +128,7 @@ incomplete commands.
See \fBTcl_StandardChannels\fR for more explanations.
.SH "SEE ALSO"
-fconfigure(1), tclvars(1)
+fconfigure(n), tclvars(n)
.SH KEYWORDS
argument, interpreter, prompt, script file, shell