diff options
author | vincentdarley <vincentdarley> | 2003-12-12 17:09:27 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-12-12 17:09:27 (GMT) |
commit | aa01f2adde9514d4744432c6edb9667ea86bd2b2 (patch) | |
tree | 207bbf14b096b450d2cdc97d3ede6460b07d315d /win | |
parent | 4b258259b47bd0beac3084e2ec7963668038e88c (diff) | |
download | tcl-aa01f2adde9514d4744432c6edb9667ea86bd2b2.zip tcl-aa01f2adde9514d4744432c6edb9667ea86bd2b2.tar.gz tcl-aa01f2adde9514d4744432c6edb9667ea86bd2b2.tar.bz2 |
allow creation of relative links
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinFile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 548fd65..697bff3 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinFile.c,v 1.56 2003/12/09 14:57:18 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinFile.c,v 1.57 2003/12/12 17:09:27 vincentdarley Exp $ */ //#define _WIN32_WINNT 0x0500 @@ -218,7 +218,7 @@ WinLink(LinkSource, LinkTarget, linkAction) return -1; } - /* Get the full path referenced by the directory */ + /* Get the full path referenced by the source file/directory */ if (!(*tclWinProcs->getFullPathNameProc)(LinkSource, MAX_PATH, tempFileName, &tempFilePart)) { /* Invalid file */ |