summaryrefslogtreecommitdiffstats
path: root/generic/tclFileName.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2006-05-13 23:21:03 (GMT)
committerdgp <dgp@noemail.net>2006-05-13 23:21:03 (GMT)
commitb8a07b5d359e1a88fb19e1a6b0bad1ae161db965 (patch)
tree66d8545881a665a1fc9cfd5ad365e20798677e49 /generic/tclFileName.c
parentb259ad2a9ed3fed306f73fb79e6e05dad4727808 (diff)
downloadtcl-b8a07b5d359e1a88fb19e1a6b0bad1ae161db965.zip
tcl-b8a07b5d359e1a88fb19e1a6b0bad1ae161db965.tar.gz
tcl-b8a07b5d359e1a88fb19e1a6b0bad1ae161db965.tar.bz2
* generic/tclFileName.c (TclDoGlob): Disabled the partial
normalization done by the recursive glob routine, since changing the precise string of the pathname broke [glob] on some Tcl_Filesystems. [Bug 943995] FossilOrigin-Name: 641fe5b72dd38760e82777c6dfb460322d099422
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r--generic/tclFileName.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index eb59182..0e6c35f 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.c
@@ -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: tclFileName.c,v 1.40.2.11 2005/06/21 19:07:41 kennykb Exp $
+ * RCS: @(#) $Id: tclFileName.c,v 1.40.2.12 2006/05/13 23:21:04 dgp Exp $
*/
#include "tclInt.h"
@@ -2346,6 +2346,9 @@ TclDoGlob(interp, separators, headPtr, tail, types)
} else if (strchr(separators, *tail) == NULL) {
break;
}
+ if (tclPlatform != TCL_PLATFORM_MAC) {
+ Tcl_DStringAppend(headPtr, tail, 1);
+ }
count++;
}
@@ -2387,7 +2390,6 @@ TclDoGlob(interp, separators, headPtr, tail, types)
* trailing slash if needed. Otherwise add the slash if
* this is the first absolute element, or a later relative
* element. Add an extra slash if this is a UNC path.
- */
if (*name == ':') {
Tcl_DStringAppend(headPtr, ":", 1);
@@ -2403,13 +2405,13 @@ TclDoGlob(interp, separators, headPtr, tail, types)
Tcl_DStringAppend(headPtr, "/", 1);
}
}
+ */
break;
- case TCL_PLATFORM_UNIX:
+ case TCL_PLATFORM_UNIX: {
/*
* Add a separator if this is the first absolute element, or
* a later relative element.
- */
if ((*tail != '\0')
&& (((length > 0)
@@ -2417,7 +2419,9 @@ TclDoGlob(interp, separators, headPtr, tail, types)
|| ((length == 0) && (count > 0)))) {
Tcl_DStringAppend(headPtr, "/", 1);
}
+ */
break;
+ }
}
/*