summaryrefslogtreecommitdiffstats
path: root/doc/open.n
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-11-10 02:51:42 (GMT)
committerhobbs <hobbs>1999-11-10 02:51:42 (GMT)
commit284e6ca672d27e0c62c184d39089428622a453c1 (patch)
tree4faa9a2019341d3f1f8c36832060ac78c42e1604 /doc/open.n
parent2c8cf93e087eb4ad39c0044aeafa5eed2ff3ede6 (diff)
downloadtcl-284e6ca672d27e0c62c184d39089428622a453c1.zip
tcl-284e6ca672d27e0c62c184d39089428622a453c1.tar.gz
tcl-284e6ca672d27e0c62c184d39089428622a453c1.tar.bz2
* doc/open.n: corrected docs for 'a' open mode.
Diffstat (limited to 'doc/open.n')
-rw-r--r--doc/open.n7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/open.n b/doc/open.n
index 2f3b9f5..cc60da6 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.5 1999/07/22 00:06:09 redman Exp $
+'\" RCS: @(#) $Id: open.n,v 1.6 1999/11/10 02:51:42 hobbs Exp $
'\"
.so man.macros
.TH open n 7.6 Tcl "Tcl Built-In Commands"
@@ -55,8 +55,9 @@ Open the file for reading and writing. Truncate it if it exists.
If it doesn't exist, create a new file.
.TP 15
\fBa\fR
-Open the file for writing only. The file must already exist, and the file
-is positioned so that new data is appended to the file.
+Open the file for writing only. If the file doesn't exist,
+create a new empty file.
+Set the initial access position to the end of the file.
.TP 15
\fBa+\fR
Open the file for reading and writing. If the file doesn't exist,