summaryrefslogtreecommitdiffstats
path: root/doc/file.n
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-09-06 17:42:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-09-06 17:42:50 (GMT)
commit0498575453fea7f8dfced4c9c97fb25840684531 (patch)
tree764a450b0848a0d22b57e0a74d56e4254dd44e3d /doc/file.n
parent88f6078b6c266cb05d2b31082a049747adee71bf (diff)
downloadtcl-0498575453fea7f8dfced4c9c97fb25840684531.zip
tcl-0498575453fea7f8dfced4c9c97fb25840684531.tar.gz
tcl-0498575453fea7f8dfced4c9c97fb25840684531.tar.bz2
* doc/file.n: Format correction, and clarified [file normalize]
returns an absolute path. * doc/tcltest.n: Added examples section, as long promised.
Diffstat (limited to 'doc/file.n')
-rw-r--r--doc/file.n20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/file.n b/doc/file.n
index 2d21150..85cd3a5 100644
--- a/doc/file.n
+++ b/doc/file.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: file.n,v 1.21 2002/07/11 17:42:20 vincentdarley Exp $
+'\" RCS: @(#) $Id: file.n,v 1.22 2002/09/06 17:42:58 dgp Exp $
'\"
.so man.macros
.TH file n 8.3 Tcl "Tcl Built-In Commands"
@@ -260,15 +260,15 @@ under Windows or AppleScript on the Macintosh.
.RS
Returns a unique normalised path representation for the file-system
object (file, directory, link, etc), whose string value can be used as a
-unique identifier for it. A normalized path is one which has all '../',
-'./' removed. Also it is one which is in the ``standard'' format for the
-native platform. On MacOS, Unix, this means the segments leading up to
-the path must be free of symbolic links/aliases (but the very last path
-component may be a symbolic link), and on Windows it also means means we
-want the long form with that form's case-dependence (which gives us a
-unique, case-dependent path). The one exception concerning the last link
-in the path is necessary, because Tcl or the user may wish to operate on
-the actual symbolic link itself (for example 'file delete', 'file
+unique identifier for it. A normalized path is an absolute path which has
+all '../', './' removed. Also it is one which is in the ``standard''
+format for the native platform. On MacOS, Unix, this means the segments
+leading up to the path must be free of symbolic links/aliases (but the
+very last path component may be a symbolic link), and on Windows it also
+means means we want the long form with that form's case-dependence (which
+gives us a unique, case-dependent path). The one exception concerning the
+last link in the path is necessary, because Tcl or the user may wish to
+operate on the actual symbolic link itself (for example 'file delete', 'file
rename', 'file copy' are defined to operate on symbolic links, not on the
things that they point to).
.RE