summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclPort.h:das2004-04-244-7/+17
| | | | | | | | | * macosx/Makefile: * unix/Makefile.in: followup on tcl header reform [FR 922727]: removed use of relative #include paths in tclPort.h to allow installation of private headers outside of tcl source tree; added 'unix' dir to compiler header search path; add newly required tcl private headers to Tcl.framework on Mac OSX.
* * generic/tclIO.c (Tcl_SetChannelOption): Fixed [SF Tcl Bugandreas_kupries2004-04-234-2/+878
| | | | | 930851]. When changing the eofchar we have to zap the related flags to prevent them from prematurely aborting the next read.
* Filling in names for email addresses in the "old days"dkf2004-04-231-448/+447
| | | | Also cleaning up of extra whitespace
* fix to two filesystem bugs: more consistent file separator proc and correct ↵vincentdarley2004-04-234-11/+41
| | | | Tcl_FSJoinPath return values
* no messagedavygrvy2004-04-231-1/+5
|
* (Tcl_MakeFileChannel) : Case for CloseHandle returning zero and notdavygrvy2004-04-231-7/+13
| | | | | throwing a RaiseException(EXCEPTION_INVALID_HANDLE) now being done.
* no messagedavygrvy2004-04-231-0/+6
|
* Removed my mistake of adding an exit handler to TclWinInit.davygrvy2004-04-231-30/+1
| | | | | TclWinEncodingsCleanup called from TclFinalizeFilesystem does the Tcl_FreeEncoding for us.
* * generic/tclInt.h:davygrvy2004-04-236-12/+86
| | | | | | | | | * generic/tclThread.c: * generic/tclEvent.c: * unix/tclUnixThrd.c: * win/tclWinThrd.c: Provisions made so masterLock, initLock, allocLock and joinLock mutexes can be recovered during Tcl_Finalize.
* * win/tclWinTime.c: If the Tcl_ExitProc (StopCalibration) isdavygrvy2004-04-231-2/+6
| | | | | called from the stack frame of DllMain's PROCESS_DETACH, the wait operation should timeout and continue.
* speling errors correcteddavygrvy2004-04-231-1/+1
|
* no messagedavygrvy2004-04-231-0/+7
|
* TclSetLibraryPath's use of caching the stringrep of the pathPtr object todavygrvy2004-04-231-3/+15
| | | | | TclGetLibraryPath called from another thread was ineffective if the original's stringrep had been invalidated as what happens when it gets muted to a list.
* Improvements to examples by DKFdkf2004-04-222-26/+52
|
* Documentation clarification from David Welton.dkf2004-04-222-1/+6
|
* Spelling... :^/dkf2004-04-221-3/+3
|
* More examples, this time from Arjen Markus and Donal Fellows.dkf2004-04-222-2/+87
|
* Added note about a safe and useful mode of update to a hash being iterated over.dkf2004-04-212-3/+9
|
* Added example from David Welton. [Patch 939473]dkf2004-04-212-1/+21
|
* Added examples from David Welton. [Patch 938820]dkf2004-04-212-1/+42
|
* no messagedavygrvy2004-04-201-0/+4
|
* Added FreeEncoding(systemEncoding) in TclFinalizeEncodingSubsystemdavygrvy2004-04-201-1/+2
| | | | because its ref count was incremented in TclInitEncodingSubsystem.
* no messagedavygrvy2004-04-201-0/+5
|
* Added an exit handler in tclWinInit() so tclWinTCharEncoding could be freeddavygrvy2004-04-201-1/+30
| | | | for Tcl_Finalize.
* Added example from David Welton. [Patch 938056]dkf2004-04-192-1/+15
|
* Corrected "short circuit" conversion of int to double. Reported by Kevin B Kenny2004-04-192-1/+8
| | | | Jeff Hobbs on the Tcl'ers Chat.
* Add more examples to documentation along the lines of David Welton's project.dkf2004-04-166-5/+110
|
* Corrected type error in synopsis.dgp2004-04-161-2/+2
|
* fix to utime documentationvincentdarley2004-04-162-4/+10
|
* Added example from [Patch 936245] from David Welton.dkf2004-04-162-3/+30
| | | | Also some other minor bits of doc cleanup.
* Added example based on [Patch 935911] from David Welton.dkf2004-04-162-1/+18
|
* Fix minor fault in [clock clicks] error message.dkf2004-04-153-3/+11
|
* * win/tclWinInit.c (TclpSetInitialEncodings): note that WIN32_CEhobbs2004-04-076-47/+80
| | | | | | | | | | is also a unicode platform. * generic/tclEncoding.c (TclFindEncodings, Tcl_FindExecutable): * generic/tclInt.h: Correct handling of UTF * unix/tclUnixInit.c (TclpInitLibraryPath): data that is actually * win/tclWinFile.c (TclpFindExecutable): "clean", allowing the * win/tclWinInit.c (TclpInitLibraryPath): loading of Tcl from paths that contain multi-byte chars on Windows [Bug 920667]
* * win/configure: define TCL_LIB_FLAG, TCL_BUILD_LIB_SPEC,hobbs2004-04-073-26/+55
| | | | * win/configure.in: TCL_LIB_SPEC, TCL_PACKAGE_PATH in tclConfig.sh.
* fix to comment (bug 931148)vincentdarley2004-04-071-4/+4
|
* Patch 922727 committed. Implements three changes:dgp2004-04-062-73/+0
| | | | | | | | | | | | | | | | | | | | | | | * 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):
* Patch 922727 committed. Implements three changes:dgp2004-04-0686-228/+142
| | | | | | | | | | | | | | | | | | | | | | | * 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):
* * tests/unixInit.test (unixInit-3.1): Default encoding on Darwindgp2004-04-062-2/+9
| | | | systems is utf-8. Thanks to Steven Abner (tauvan). [Bug 928808]
* root interacts badly with access(...,X_OK) [Bug 929892]dkf2004-04-062-2/+8
|
* add thanksdgp2004-04-021-1/+1
|
* * generic/tclCompile.c:Miguel Sofer2004-04-023-21/+29
| | | | | * generic/tclInt.h: removed the macro TCL_ALIGN() from tclInt.h, replaced by the static macro ALIGN() in tclCompile.c [Bug 926445]
* * generic/tclCompile.h: removed redundant #ifdef _TCLINTMiguel Sofer2004-04-022-3/+6
| | | | [Bug 928415], reported by tauvan.
* * tests/tcltest.test: Corrected constraint typos: "nonRoot" ->dgp2004-04-022-4/+9
| | | | "notRoot". [Bug 928353]
* * generic/tclInt.h: Removed obsolete tclBlockTime* declarations.dgp2004-04-012-3/+6
| | | | [Bug 926454]
* cross-filesystem boundary glob fixvincentdarley2004-04-012-2/+26
|
* date fixdgp2004-03-311-1/+1
|
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-312-11/+25
| | | | | | | | | | | | | | * library/msgcat/msgcat.tcl: Updated internals to make use of [dict]s to store message catalog data and to use [source -encoding utf-8] to access catalog files. Thanks to Michael Sclenker. [Patch 875055, RFE 811459] Corrected [mcset] to be able to successfully set a translation to the empty string. [mcset $loc $src {}] was incorrectly set the $loc translation of $src back to $src. Also changed [ConvertLocale] to minimally require a non-empty "language" part in the locale value. If not, an error raised prompts [Init] to keep looking for a valid locale value, or ultimately fall back on the "C" locale. [Bug 811461]. * library/msgcat/pkgIndex.tcl: Bump to msgcat 1.4.1.
* Add comment for TCL_TOKEN_EXPAND_WORD flagdgp2004-03-311-1/+6
|
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-312-3/+4
|
* * library/msgcat/msgcat.tcl: Updated internals to make use ofdgp2004-03-313-36/+61
| | | | | | | * library/msgcat/pkgIndex.tcl: [dict]s to store message catalog data and to use [source -encoding utf-8] to access catalog files. Thanks to Michael Sclenker. Also corrects bug to allow translation to an empty string. Bump to msgcat 1.4.1. [Patch 875055]