diff options
author | dgp <dgp@users.sourceforge.net> | 2004-02-06 16:48:54 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-02-06 16:48:54 (GMT) |
commit | 33d37367eefd25c2373ed2d0e7d5d33aaf0c4546 (patch) | |
tree | d1f4d1fa10d867fbbeafc0120bb2ae8bfd257405 | |
parent | b9420de87169fc5713748cf74517e2a977ae4769 (diff) | |
download | tcl-33d37367eefd25c2373ed2d0e7d5d33aaf0c4546.zip tcl-33d37367eefd25c2373ed2d0e7d5d33aaf0c4546.tar.gz tcl-33d37367eefd25c2373ed2d0e7d5d33aaf0c4546.tar.bz2 |
* doc/clock.n: Removed reference to non-existent [file ctime].
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | doc/clock.n | 6 | ||||
-rw-r--r-- | tests/fileSystem.test | 1 |
3 files changed, 7 insertions, 4 deletions
@@ -1,3 +1,7 @@ +2004-02-06 Don Porter <dgp@users.sourceforge.net> + + * doc/clock.n: Removed reference to non-existent [file ctime]. + 2004-02-05 David Gravereaux <davygrvy@pobo.co> * docs/tclvars.n: Added clarification of the tcl_platform(debug) diff --git a/doc/clock.n b/doc/clock.n index 0823c0e..0bdea6f 100644 --- a/doc/clock.n +++ b/doc/clock.n @@ -10,7 +10,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: clock.n,v 1.12 2003/04/12 19:08:54 kennykb Exp $ +'\" RCS: @(#) $Id: clock.n,v 1.13 2004/02/06 16:48:54 dgp Exp $ '\" .so man.macros .TH clock n 8.4 Tcl "Tcl Built-In Commands" @@ -62,8 +62,8 @@ phenomena as leap seconds. .TP \fBclock format \fIclockValue\fR ?\fB\-format \fIstring\fR? ?\fB\-gmt \fIboolean\fR? Converts an integer time value, typically returned by -\fBclock seconds\fR, \fBclock scan\fR, or the \fBatime\fR, \fBmtime\fR, -or \fBctime\fR options of the \fBfile\fR command, to human-readable +\fBclock seconds\fR, \fBclock scan\fR, or the \fBatime\fR or \fBmtime\fR +options of the \fBfile\fR command, to human-readable form. If the \fB\-format\fR argument is present the next argument is a string that describes how the date and time are to be formatted. Field descriptors consist of a \fB%\fR followed by a field diff --git a/tests/fileSystem.test b/tests/fileSystem.test index 67f0cc1..07f5396 100644 --- a/tests/fileSystem.test +++ b/tests/fileSystem.test @@ -743,7 +743,6 @@ test filesystem-7.7 {cross-filesystem dir copy with -force} \ # First copy should succeed set res [catch {file copy simplefs:/simpledir dir2} err] lappend res $err - file attributes dir2 -permissions 0000 # Second copy should fail (no -force) lappend res [catch {file copy simplefs:/simpledir dir2} err] lappend res $err |