Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * generic/tclPathObj.c: Corrected [file tail] results when operating | dgp | 2004-06-10 | 1 | -1/+16 |
| | | | | on a path produced by TclNewFSPathObj(). [Bug 970529] | ||||
* | Silence compiler warnings. | dgp | 2004-06-08 | 1 | -2/+3 |
| | |||||
* | fix to 'file dirname' and to fs refCount documentation | vincentdarley | 2004-05-19 | 1 | -3/+28 |
| | |||||
* | fix to two filesystem bugs: more consistent file separator proc and correct ↵ | vincentdarley | 2004-04-23 | 1 | -2/+10 |
| | | | | Tcl_FSJoinPath return values | ||||
* | Patch 922727 committed. Implements three changes: | dgp | 2004-04-06 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.h: Reworked the Tcl header files into a clean * unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h * win/tclWinInt.h: and every C source file should #include * win/tclWinPort.h: at most one of those files to satisfy its declaration needs. tclWinInt.h and tclWinPort.h also better organized so that tclWinPort.h includes the Windows implementation of cross-platform declarations, while tclWinInt.h makes declarations that are available on Windows only. * generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h * generic/tclMath.h (removed): header file. The internal Tcl * macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a * win/tcl.dsp: #include <math.h> directly, and file external to Tcl needing libm should do the same. * win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file. * win/makefile.bc (TCLOBJS): It's a vestige from matherr() days * win/makefile.vc (TCLOBJS): gone by. * win/tcl.dsp: * win/tclWinMtherr.c (removed): | ||||
* | fix to Tcl bug 918320 | vincentdarley | 2004-03-30 | 1 | -19/+25 |
| | |||||
* | fixed another volume-relative file normalization problem | vincentdarley | 2004-03-26 | 1 | -4/+12 |
| | |||||
* | fix to windows volume-relative path normalization | vincentdarley | 2004-03-26 | 1 | -5/+7 |
| | |||||
* | Removed support for Mac OS Classic platform [Patch 918142] | das | 2004-03-17 | 1 | -81/+8 |
| | |||||
* | fixed typos in documentation and comments | vincentdarley | 2004-03-09 | 1 | -3/+3 |
| | |||||
* | fix to file normalization with links | vincentdarley | 2004-01-29 | 1 | -11/+43 |
| | |||||
* | filesystem fixes for '-force' consistency and picky compilers | vincentdarley | 2004-01-29 | 1 | -1/+7 |
| | |||||
* | file normalize bug fixes for .. and . | vincentdarley | 2004-01-23 | 1 | -1/+4 |
| | |||||
* | filesystem optimisation -- Three main issues accomplished: (1) cleaned up ↵ | vincentdarley | 2004-01-21 | 1 | -211/+541 |
| | | | | variable names in | ||||
* | All uses of 'panic' (the macro) changed | davygrvy | 2003-12-24 | 1 | -2/+2 |
| | | | | | | | to 'Tcl_Panic' (the function). The #define of panic in tcl.h clearly states it is deprecated in the comments. [Patch 865264] | ||||
* | fix to fs norm bug 860402 | vincentdarley | 2003-12-17 | 1 | -4/+7 |
| | |||||
* | fixed Tcl_FSGetTranslatedPath to always return properly refcounted | vasiljevic | 2003-12-17 | 1 | -9/+10 |
| | | | | path object. This fixes Tcl Bug #861515. | ||||
* | Stop warnings due to (annoying) C type promotion rules. | dkf | 2003-12-14 | 1 | -6/+5 |
| | |||||
* | rewrite of file normalization | vincentdarley | 2003-12-14 | 1 | -84/+220 |
| | |||||
* | remove windows [cd] bug | vincentdarley | 2003-11-24 | 1 | -5/+12 |
| | |||||
* | whitespace | vincentdarley | 2003-11-03 | 1 | -2/+2 |
| | |||||
* | filesystem bug fixes | vincentdarley | 2003-10-13 | 1 | -2/+14 |
| | |||||
* | Exported symbol name police (thanks GPS for spotting this!) | dkf | 2003-10-10 | 1 | -9/+9 |
| | |||||
* | fixed inconsistent handling of file separators in file join | vincentdarley | 2003-09-30 | 1 | -34/+53 |
| | |||||
* | Symbols which are visible outside a single compilation unit must have | dkf | 2003-09-29 | 1 | -14/+14 |
| | | | | | the prefix 'Tcl' to keep them out of the way of non-Tcl C code on Unix. (Problem reported by George Staplin.) | ||||
* | fileName test suite bug fix | vincentdarley | 2003-09-18 | 1 | -3/+10 |
| | |||||
* | minor filesystem bug fixes | vincentdarley | 2003-09-16 | 1 | -10/+55 |
| | |||||
* | Applied changes from 8.4.4 regarding the Bug #753315 | vasiljevic | 2003-08-23 | 1 | -40/+59 |
| | |||||
* | 2003-07-16 Mumit Khan <khan@nanotech.wisc.edu> | hobbs | 2003-07-17 | 1 | -1/+21 |
| | | | | | | | | | * generic/tclPathObj.c (SetFsPathFromAny): Add Cygwin specific code to convert POSIX filename to native format. * generic/tclFileName.c (Tcl_TranslateFileName): And remove from here. (TclDoGlob): Adjust for cygwin and append / for dirs instead of \ * win/tclWinFile.c (TclpObjChdir): Use chdir on Cygwin. [Patch 679315] | ||||
* | * generic/tclFileName.c (Tcl_GlobObjCmd): [Bug 771840] | dgp | 2003-07-16 | 1 | -1/+3 |
| | | | | | | * generic/tclPathObj.c (Tcl_FSConvertToPathType):[Bug 771947] * unix/tclUnixFCmd.c (GetModeFromPermString): [Bug 771949] Silence compiler warnings about unreached lines. | ||||
* | removed undesired 'static' | vincentdarley | 2003-04-16 | 1 | -2/+2 |
| | |||||
* | shared filesystem function | vincentdarley | 2003-04-14 | 1 | -7/+4 |
| | |||||
* | fix 5 small filesystem bugs, and some typos | vincentdarley | 2003-04-11 | 1 | -0/+1857 |