summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* revert back to 1.24.2.2 from prior mistaken commit.davygrvy2004-04-231-34/+5
|
* * win/tclWinTime.c: If the Tcl_ExitProc (StopCalibration) isdavygrvy2004-04-231-5/+34
| | | | | called from the stack frame of DllMain's PROCESS_DETACH, the wait operation should timeout and continue.
* * win/configure:hobbs2004-04-073-9/+39
| | | | | * win/configure.in: define TCL_LIB_FLAG, TCL_BUILD_LIB_SPEC, TCL_LIB_SPEC and TCL_PACKAGE_PATH in tclConfig.sh.
* * 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
|
* * tests/tcltest.test: Corrected constraint typos: "nonRoot" ->dgp2004-04-022-4/+9
| | | | "notRoot". [Bug 928353]
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-313-9/+17
| | | | | | | | | | | * library/msgcat/msgcat.tcl ([mcset], [ConvertLocale], [Init]): 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.3.2.
* * library/msgcat/msgcat.tcl ([mcset]): Corrected [mcset] to be abledgp2004-03-313-5/+12
| | | | | | * library/msgcat/pkgIndex.tcl: to successfully set a translation to the empty string. [mcset $loc $src {}] was incorrectly set the $loc translation of $src back to $src. Bump to msgcat 1.3.2.
* Backport of fixes to make HashObjKey hash the whole object...dkf2004-03-302-18/+14
|
* * generic/tclInt.h:hobbs2004-03-297-44/+78
| | | | | | | | | * generic/tclEncoding.c (TclFindEncodings, Tcl_FindExecutable): * mac/tclMacInit.c (TclpInitLibraryPath): 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]
* * generic/tclCompile.c (TclCompileScript): corrected possibleMiguel Sofer2004-03-292-3/+10
| | | | | segfault when a compilation returns TCL_OUTLINE_COMPILE after having grown the compile environment [Bug 925121].
* * win/tclWinInit.c (TclpSetInitialEncodings): recognize WIN32_CEhobbs2004-03-212-5/+14
| | | | as a unicode (WCHAR) platform.
* define WIN32_CE platform infohobbs2004-03-211-1/+5
|
* * generic/tclCompile.c (TclCompileScript):Miguel Sofer2004-03-153-6/+18
| | | | | | | | | * tests/compile.test (compile-3.5): corrected wrong test and behaviour in the earlier fix for [Bug 705406]; Don Porter reported this as [Bug 735055], and provided the solution. Fixed in HEAD on 2003-05-09, but backport to 8-4-branch was wrongly omitted; re-reported as [Bug 916795] by Roy Terry, diagnosed by dgp.
* glob -path fix for near filesystem rootvincentdarley2004-03-093-2/+48
|
* updated release note files for 8.4.6core_8_4_6dgp2004-03-012-4/+14
|
* * unix/tcl.m4 (SC_CONFIG_CFLAGS): Allow 64-bit enabling ondgp2004-03-013-2/+6
| | | | | IRIX64-6.5* systems. [Bug 218561] * unix/configure: autoconf-2.13
* * generic/tclCmdMZ.c (TclCheckInterpTraces): The TIP 62dgp2004-03-014-4/+34
| | | | | | | | * generic/tclTest.c (TestcmdtraceCmd): implementation introduced a * tests/basic.test (basic-39.10): bug by testing the CallFrame level instead of the iPtr->numLevels level when deciding what traces created by Tcl_Create(Obj)Trace to call. Added test to expose the error, and made fix. [Request 462580]
* * macosx/Makefile: fixed copyright year in Tcl.framework Info.plistdas2004-02-262-3/+8
|
* moved core-8-4-6 release taghobbs2004-02-261-4/+2
|
* * tests/basic.test: Made several tests more robust to thedgp2004-02-259-102/+170
| | | | | | | | | | * tests/cmdMZ.test: list-quoting of path names that might * tests/exec.test: contain Tcl-special chars like { or [. * tests/io.test: Should help us sort out Tcl Bug 554068. * tests/pid.test: * tests/socket.test: * tests/source.test: * tests/unixInit.test:
* Fix memleak with long hostnames. [Bug 888777]dkf2004-02-252-1/+8
|
* no messagedavygrvy2004-02-251-0/+6
|
* backport of BuildCommandLine changes to mirror msvcrt's parse_cmdline() ↵davygrvy2004-02-252-21/+125
| | | | rules of quoting
* stop compiler warningdgp2004-02-201-2/+2
|
* update changes for 8.4.6 releasedgp2004-02-202-2/+29
|
* * win/tclWinInit.c (AppendEnvironment):mdejong2004-02-202-4/+32
| | | | | | | | Use the tail component of the passed in lib path instead of just blindly using lib+4. That worked when lib was "lib/..." but fails for other values. Thanks go to Patrick Samson for pointing this out.
* note 8.4.6 taghobbs2004-02-181-0/+4
|
* reverted file norm .. fixes because 8.5 had much more extensive changes ↵hobbs2004-02-182-223/+87
| | | | across the board
* * doc/tcltest.n:dgp2004-02-183-5/+13
| | | | | | * library/tcltest/tcltest.tcl: Changed -verbose default value to {body error} so that detailed information on unexpected errors in tests is provided by default, even after the fix for [Bug 725253]
* * generic/tclIOUtil.c: backport of rewrite of generic filehobbs2004-02-182-85/+226
| | | | | normalization code to cope with links followed by '..'. [Bug 849514], and parts of [859251]
* add constraints to unixInit-7.1hobbs2004-02-181-2/+4
|
* * tests/unixInit.test: unixInit-7.1hobbs2004-02-173-2/+34
| | | | | * unix/tclUnixInit.c (TclpInitPlatform): ensure the std fds exist to prevent crash condition [Bug #772288]
* * generic/tclCmdMZ.c (TclTraceExecutionObjCmd)hobbs2004-02-172-6/+9
| | | | (TclTraceCommandObjCmd): fix possible mem leak in trace info.
* update patchlevel to 8.4.6hobbs2004-02-1310-342/+413
|
* update HP-11 build libs setuphobbs2004-02-131-1/+8
|
* minor clarification in exists vs vars return listhobbs2004-02-131-1/+3
|
* * doc/clock.n: Removed reference to non-existent [file ctime].dgp2004-02-062-3/+7
|
* * library/tcltest/tcltest.tcl: Corrected references todgp2004-02-042-3/+8
| | | | non-existent $name variable in [cleanupTests]. [Bug 833637]
* * library/tcltest/tcltest.tcl: Corrected parsing of singledgp2004-02-033-4/+15
| | | | | command line argument (option with missing value) [Bug 833910] * library/tcltest/pkgIndex.tcl: Bump to version 2.2.5.
* no messagedavygrvy2004-02-021-0/+5
|
* * generic/tclIO.c (Tcl_Ungets): fixes improper filling of the channel buffer.davygrvy2004-02-021-3/+2
| | | | [Bug 405995]
* * generic/tclFileName.c (Tcl_GlobObjCmd): Latest changes todgp2004-01-132-24/+24
| | | | | | | management of the interp result by Tcl_GetIndexFromObj() exposed improper interp result management in the [glob] command procedure. Corrected by adopting the Tcl_SetObjResult(Tcl_NewStringObj) pattern. This stopped a segfault in test filename-11.36.
* Fix shared object panics. [Bug 875395]dkf2004-01-132-3/+14
|
* vfs code tclfinalizefilesystem fixvincentdarley2004-01-092-3/+8
|
* backported changelog entry to document backported bug fixdgp2003-12-171-0/+5
|
* * generic/tclBinary.c (DeleteScanNumberCache): fixed crashing bugdas2003-12-172-2/+9
| | | | when numeric scan-value cache contains NULL value.
* Merged fixes for Tcl Bug #839519 and Tcl Bug #861515.vasiljevic2003-12-171-11/+14
| | | | Those are already applied to the head.
* fix to 'file normalize ~nobody' crashvincentdarley2003-12-122-1/+9
|