diff options
author | hobbs <hobbs> | 1999-11-10 02:51:42 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-11-10 02:51:42 (GMT) |
commit | 284e6ca672d27e0c62c184d39089428622a453c1 (patch) | |
tree | 4faa9a2019341d3f1f8c36832060ac78c42e1604 /doc | |
parent | 2c8cf93e087eb4ad39c0044aeafa5eed2ff3ede6 (diff) | |
download | tcl-284e6ca672d27e0c62c184d39089428622a453c1.zip tcl-284e6ca672d27e0c62c184d39089428622a453c1.tar.gz tcl-284e6ca672d27e0c62c184d39089428622a453c1.tar.bz2 |
* doc/open.n: corrected docs for 'a' open mode.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/open.n | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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, |