summaryrefslogtreecommitdiffstats
path: root/generic/tclPathObj.c
Commit message (Collapse)AuthorAgeFilesLines
...
* fix to windows file join bugvincentdarley2004-11-221-4/+12
|
* filesystem generic/platform code splittingvincentdarley2004-10-071-80/+6
|
* Style improvements and more macro use.dkf2004-10-061-203/+361
|
* Factorize out the code for freeing an object's internal rep.dkf2004-09-291-13/+5
|
* fix to small filesystem bugsvincentdarley2004-09-271-8/+15
|
* * generic/tclPathObj.c: Corrected [file tail] results when operatingdgp2004-06-101-1/+16
| | | | on a path produced by TclNewFSPathObj(). [Bug 970529]
* Silence compiler warnings.dgp2004-06-081-2/+3
|
* fix to 'file dirname' and to fs refCount documentationvincentdarley2004-05-191-3/+28
|
* fix to two filesystem bugs: more consistent file separator proc and correct ↵vincentdarley2004-04-231-2/+10
| | | | Tcl_FSJoinPath return values
* Patch 922727 committed. Implements three changes:dgp2004-04-061-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 918320vincentdarley2004-03-301-19/+25
|
* fixed another volume-relative file normalization problemvincentdarley2004-03-261-4/+12
|
* fix to windows volume-relative path normalizationvincentdarley2004-03-261-5/+7
|
* Removed support for Mac OS Classic platform [Patch 918142]das2004-03-171-81/+8
|
* fixed typos in documentation and commentsvincentdarley2004-03-091-3/+3
|
* fix to file normalization with linksvincentdarley2004-01-291-11/+43
|
* filesystem fixes for '-force' consistency and picky compilersvincentdarley2004-01-291-1/+7
|
* file normalize bug fixes for .. and .vincentdarley2004-01-231-1/+4
|
* filesystem optimisation -- Three main issues accomplished: (1) cleaned up ↵vincentdarley2004-01-211-211/+541
| | | | variable names in
* All uses of 'panic' (the macro) changeddavygrvy2003-12-241-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 860402vincentdarley2003-12-171-4/+7
|
* fixed Tcl_FSGetTranslatedPath to always return properly refcountedvasiljevic2003-12-171-9/+10
| | | | path object. This fixes Tcl Bug #861515.
* Stop warnings due to (annoying) C type promotion rules.dkf2003-12-141-6/+5
|
* rewrite of file normalizationvincentdarley2003-12-141-84/+220
|
* remove windows [cd] bugvincentdarley2003-11-241-5/+12
|
* whitespacevincentdarley2003-11-031-2/+2
|
* filesystem bug fixesvincentdarley2003-10-131-2/+14
|
* Exported symbol name police (thanks GPS for spotting this!)dkf2003-10-101-9/+9
|
* fixed inconsistent handling of file separators in file joinvincentdarley2003-09-301-34/+53
|
* Symbols which are visible outside a single compilation unit must havedkf2003-09-291-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 fixvincentdarley2003-09-181-3/+10
|
* minor filesystem bug fixesvincentdarley2003-09-161-10/+55
|
* Applied changes from 8.4.4 regarding the Bug #753315vasiljevic2003-08-231-40/+59
|
* 2003-07-16 Mumit Khan <khan@nanotech.wisc.edu>hobbs2003-07-171-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]dgp2003-07-161-1/+3
| | | | | | * generic/tclPathObj.c (Tcl_FSConvertToPathType):[Bug 771947] * unix/tclUnixFCmd.c (GetModeFromPermString): [Bug 771949] Silence compiler warnings about unreached lines.
* removed undesired 'static'vincentdarley2003-04-161-2/+2
|
* shared filesystem functionvincentdarley2003-04-141-7/+4
|
* fix 5 small filesystem bugs, and some typosvincentdarley2003-04-111-0/+1857