summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorandreas_kupries <andreas_kupries@noemail.net>2003-10-22 22:35:45 (GMT)
committerandreas_kupries <andreas_kupries@noemail.net>2003-10-22 22:35:45 (GMT)
commit4eda61c04f6b1033a8a6e4fa26c4576549e2ab83 (patch)
treeec410cf26fa91a938dada03026c5823da24c17e9 /generic/tcl.h
parent06be787c102a218f34445a67ebee8a0c506e4f0f (diff)
downloadtcl-4eda61c04f6b1033a8a6e4fa26c4576549e2ab83.zip
tcl-4eda61c04f6b1033a8a6e4fa26c4576549e2ab83.tar.gz
tcl-4eda61c04f6b1033a8a6e4fa26c4576549e2ab83.tar.bz2
* generic/tclIOUtil.c (FsListMounts, FsAddMountsToGlobResult): New
functions. See below for context. (Tcl_FSMatchInDirectory): Modified to call on the new functions (above) to handle the mountpoints in the glob'bed directory correctly. Part of the patch by Vincent Darly to solve the [Bug 800106] for the 8.4.x series. * generic/tcl.h (TCL_GLOB_TYPE_MOUNT): New definition. Part of the patch by Vincent Darly to solve [Bug 800106] for the 8.4.x series. FossilOrigin-Name: a16319b2a6704b8177bb4d150a2990c6a44d161d
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 7d39feb..7d9afde 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tcl.h,v 1.153.2.7 2003/10/02 23:07:33 dgp Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.153.2.8 2003/10/22 22:35:46 andreas_kupries Exp $
*/
#ifndef _TCL
@@ -1591,6 +1591,7 @@ typedef struct Tcl_GlobTypeData {
#define TCL_GLOB_TYPE_FILE (1<<4)
#define TCL_GLOB_TYPE_LINK (1<<5)
#define TCL_GLOB_TYPE_SOCK (1<<6)
+#define TCL_GLOB_TYPE_MOUNT (1<<7)
#define TCL_GLOB_PERM_RONLY (1<<0)
#define TCL_GLOB_PERM_HIDDEN (1<<1)