summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * generic/tclEvent.c (Tcl_CreateThread): Replaced some calls todgp2007-03-191-0/+7
| | | | | | * generic/tclPkg.c (CheckVersion): Tcl_Alloc() with calls to * unix/tclUnixTime.c (SetTZIfNecessary): ckalloc(), which better * win/tclAppInit.c (setargv): supports memory debugging.
* * win/tclWinReg.c (GetKeyNames): Size the buffer for enumeratingKevin B Kenny2007-03-171-0/+8
| | | | | | | key names correctly, so that Unicode names exceeding 127 chars can be retrieved without crashing. [Bug 1682211] * tests/registry.test (registry-4.9): Added test case for the above bug.
* * generic/tclExecute.c (INST_FOREACH_STEP4): Re-fetch pointers fordgp2007-03-131-0/+4
| | | | | * tests/foreach.test (foreach-10.1): the value list each iteration of the loop as defense against shimmers. [Bug 1671087]
* * generic/tclVar.c (TclArraySet): Re-fetch pointers for the listdgp2007-03-131-0/+7
| | | | | | * tests/var.test (var-17.1): argument of [array set] each time through the loop as defense against possible shimmer issues. [Bug 1669489].
* Fix [Bug 1675116] in a way suitable for 8.4.dkf2007-03-101-0/+6
|
* * macosx/tclMacOSXNotify.c: add spinlock debugging and sanity checks.das2007-03-071-0/+7
| | | | | * unix/tcl.m4 (Darwin): s/CFLAGS/CPPFLAGS/ in macosx-version-min check. * unix/configure: autoconf-2.13
* Fix [Bug 1671138]dkf2007-03-011-0/+6
|
* * tests/pkg.test: Added tests for the case of an alpha packageandreas_kupries2007-02-221-0/+7
| | | | | | satisfying a require for the regular package, demonstrating a corner case specified in TIP#280. More notes in the comments to the test.
* * doc/tcltest.n: Typo fix. [Bug 1663539]dgp2007-02-201-0/+4
|
* * unix/tcl.m4: use SHLIB_SUFFIX=".so" on HP-UX ia64 arch.hobbs2007-02-191-0/+7
| | | | * unix/configure: autoconf-2.13
* * generic/tclEncoding.c (EscapeFromUtfProc): Applied patchandreas_kupries2007-02-121-0/+10
| | | | | | | | | supplied by Mo DeJong to fix [Bug 1516109]. Backport from Tcl 8.5. Mo's description: Clear the TCL_ENCODING_END flag when end bytes are written. This fix keep this method from writing escape bytes for an encoding like iso2022-jp multiple times when the escape byte overlap with the end of the IO buffer. * tests/io.test: Add test case for escape byte overlap case.
* * unix/configure.in: add caching to -pipe check.das2007-02-041-0/+5
| | | | * unix/configure: autoconf-2.13
* * win/Makefile.in (install-private-headers): added targethobbs2007-01-301-1/+5
|
* * doc/fcopy.n: Typo fix. [Bug 1630627]dgp2007-01-291-0/+4
|
* * unix/tcl.m4: integrate CPPFLAGS into CFLAGS as late as possibledas2007-01-251-0/+9
| | | | | | | | * unix/configure.in: and move (rather than duplicate) -isysroot flags from CFLAGS to CPPFLAGS to avoid errors about multiple -isysroot flags from some older gcc builds. * unix/configure: autoconf-2.13
* * compat/memcmp.c (memcmp): Fixed the VOID / CONST typo introducedandreas_kupries2007-01-221-0/+5
| | | | by the last checkin.
* Fix [Bug 1631017]dkf2007-01-221-0/+5
|
* * macosx/tclMacOSXNotify.c: accommodate changes to prototypes ofdas2007-01-191-0/+15
| | | | | | | | | | | | | | OSSpinLock(Un)Lock API. * tests/env.test: add extra system env vars that need to be preserved on some Mac OS X versions for testsuite to work. * unix/tcl.m4: ensure CPPFLAGS env var is used when set. [Bug 1586861] (Darwin): add -isysroot and -mmacosx-version-min flags to CPPFLAGS when present in CFLAGS to avoid discrepancies between what headers configure sees during preprocessing tests and compiling tests. * unix/configure: autoconf-2.13
* * unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.das2006-12-191-0/+2
|
* * unix/tcl.m4 (Darwin): --enable-64bit: verify linking with 64bit -archdas2006-12-191-0/+6
| | | | | flag succeeds before enabling 64bit build. * unix/configure: autoconf-2.13
* Fix example. [Bug 1615277]dkf2006-12-141-3541/+3309
|
* typodas2006-12-081-2/+2
|
* Backport to 8.4 (Don Porter's work).andreas_kupries2006-12-051-0/+14
| | | | | | | | | | | | When no requirements are supplied to a [package require $pkg] and [package unknown] is invoked to find a satisfying package, pass the requirement argument "0-" (which means all versions are acceptable). This permits a registered [package unknown] command to call [package vsatisfies $testVersion {*}$args] without any special handling of the empty $args case. This fixes/avoids a bug in [::tcl::tm::UnknownHandler] that was causing old TM versions to be provided in preference to newer TM versions. Thanks to Julian Noble for discovering the issue.
* Fix [Bug 1606454]dkf2006-12-041-640/+644
|
* * generic/tclBasic.c: TIP #280 implementation, conditional on the define ↵andreas_kupries2006-11-281-1/+23
| | | | | | | | | | | | | | | | | | | | | | | TCL_TIP280. * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompCmds.c: * generic/tclCompExpr.c: * generic/tclCompile.c: * generic/tclCompile.h: * generic/tclExecute.c: * generic/tclIOUtil.c: * generic/tclInt.h: * generic/tclInterp.c: * generic/tclNamesp.c: * generic/tclObj.c: * generic/tclProc.c: * tests/compile.test: * tests/info.test: * tests/platform.test: * tests/safe.test:
* * unix/tclUnixChan.c (TclUnixWaitForFile):Kevin B Kenny2006-11-281-0/+8
| | | | | | | * tests/event.test (event-14.*): Corrected a bug where TclUnixWaitForFile would present select() with the wrong mask on an LP64 machine if a fd number exceeds 32. Thanks to Jean-Luc Fontaine for reporting and diagnosing [Bug 1602208].
* * tcl.m4 (Linux): --enable-64bit support. [Patch 1597389], [Bug 1230558]das2006-11-261-3/+8
| | | | * configure: autoconf-2.13
* * unix/tclUnixFCmd.c (CopyFile): [SF Tcl Bug 1586470]. Added codeandreas_kupries2006-11-071-0/+6
| | | | | to fall back to a hardwired default block size should the filesystem report a bogus value.
* * generic/tclBasic.c (TEOVI): fix por possible leak of a CommandMiguel Sofer2006-11-041-0/+10
| | | | | | | | | in the presence of execution traces that delete it. * generic/tclBasic.c (TEOVI): * tests/trace.test (trace-21.11): fix for [Bug 1590232], execution traces may cause a second command resolution in the wrong namespace.
* * generic/tclEnv.c (Darwin): mark _environ symbol as unexported.das2006-10-311-0/+4
|
* Fix bug #1582769 build with VC2003 and correct i386 arch.patthoyts2006-10-311-0/+4
|
* * README: Bump version number to 8.4.15dgp2006-10-231-0/+13
| | | | | | | | | | | | * generic/tcl.h: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf-2.13 * win/configure:
* advance 8.4.14 tagcore_8_4_14dgp2006-10-181-2/+2
|
* Ensure builds with VC6 without Platform SDK and Pickup MACHINE from environmentpatthoyts2006-10-181-0/+5
| | | | to make life easier on Windows non-x86 platforms.
* * generic/tclIOUtil.c: Cleaned up some code flagged by adgp2006-10-171-0/+7
| | | | | | * generic/tclInt.h: `make checkexports` test. * win/tclWin32Dll.c: * win/tclWinFile.c:
* * macosx/Makefile: don't redo prebinding of non-prebound binaires.das2006-10-161-0/+2
|
* * changes: updates for 8.4.14 release.das2006-10-161-2/+6
|
* * generic/tclPkg.c (Tcl_PkgRequireEx): Corrected crash whenandreas_kupries2006-10-111-0/+6
| | | | | argument version==NULL passed in. Backport of the fix for the same problem in 8.5.
* * changes: changes updated for 8.4.14 release.dgp2006-10-101-0/+6
|
* update tests to handle strictness changehobbs2006-10-061-0/+4
|
* Remove RTCc flagpatthoyts2006-10-061-0/+4
|
* note default "false" for http::strict for 8.4hobbs2006-10-061-1/+1
|
* * library/http/http.tcl (http::geturl): only do geturl url rfchobbs2006-10-061-0/+4
| | | | | 3986 validity checking if $::http::strict is true (default false for 8.5). [Bug 1560506]
* * generic/tcl.h: note limitation on changing Tcl_UniChar sizehobbs2006-10-051-0/+7
| | | | | | * generic/tclEncoding.c (UtfToUnicodeProc, UnicodeToUtfProc): * tests/encoding.test (encoding-16.1): fix alignment issues in unicode <> utf conversion procs. [Bug 1122671]
* * generic/tclVar.c (Tcl_LappendObjCmd):Miguel Sofer2006-10-051-0/+6
| | | | | * tests/append.test(4.21-22): fix for longstanding [Bug 1570718], lappending nothing to non-list. Reported by lvirden
* * generic/tclFileName.c (TclGlob): Prevent doubling of directorydgp2006-10-021-0/+5
| | | | separators by [glob]. [Bug 1569042]
* Handle possible missing definepatthoyts2006-10-011-0/+1
|
* Backported fix for bug #1420432 (cannot set mtime for directories on windows).patthoyts2006-10-011-0/+5
|
* 2006-09-30 Miguel Sofer <msofer@users.sf.net>Miguel Sofer2006-09-301-0/+5
| | | | | * generic/tclUtil.c (Tcl_SplitList): optimisation, [Patch 1344747] by dgp.
* * win/makefile.vc: Updated MSVC build to properly deal withpatthoyts2006-09-261-0/+9
| | | | | | | | * win/nmakehlp.c: MSVC8 and AMD64 target. Backport from 8.5 * win/rules.vc: * generic/tcl.h: Fixed stat definition for MSVC8 AMD64. * win/tclWinSock.c: Casting type police. * win/tclWinTime.c: