diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-28 19:59:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-28 19:59:10 (GMT) |
commit | eca033cfb854b6950a21b858085a58d0f9002860 (patch) | |
tree | c177b306cc7eabdede0019b7baa94421273e2a89 /generic/tclFileSystem.h | |
parent | a9f64ab24b5965c3bf6f65e0de8b8706fc38ec7c (diff) | |
parent | 3275986a1aad85bc313bd0c5ce901b5124dc61de (diff) | |
download | tcl-eca033cfb854b6950a21b858085a58d0f9002860.zip tcl-eca033cfb854b6950a21b858085a58d0f9002860.tar.gz tcl-eca033cfb854b6950a21b858085a58d0f9002860.tar.bz2 |
merge trunk
bug fix: variable $key not found
make it work on cygwin as well
Diffstat (limited to 'generic/tclFileSystem.h')
-rw-r--r-- | generic/tclFileSystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclFileSystem.h b/generic/tclFileSystem.h index 3dfc1de..828e81d 100644 --- a/generic/tclFileSystem.h +++ b/generic/tclFileSystem.h @@ -28,7 +28,6 @@ typedef struct FilesystemRecord { ClientData clientData; /* Client specific data for the new filesystem * (can be NULL) */ Tcl_Filesystem *fsPtr; /* Pointer to filesystem dispatch table. */ - int fileRefCount; /* How many Tcl_Obj's use this filesystem. */ struct FilesystemRecord *nextPtr; /* The next filesystem registered to Tcl, or * NULL if no more. */ @@ -52,6 +51,7 @@ typedef struct ThreadSpecificData { Tcl_Obj *cwdPathPtr; ClientData cwdClientData; FilesystemRecord *filesystemList; + int claims; } ThreadSpecificData; /* |