summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclThread.c: Back-port locking changes from Tcl8.5vasiljevic2007-11-261-0/+6
| | | | | in Tcl_Mutex/ConditionFinlize. Now we properly master-lock the finalization of sync primitives.
* * generic/regc_nfa.c: Fixed infinite loop in the regexp compilerdgp2007-11-151-0/+8
| | | | | | | * generic/regcomp.c: [Bug 1810038]. Corrected looping logic in * tests/regexp.test: fixempties() to avoid wasting time walking a list of dead states [Bug 1832612]. Convert optst() from expensive no-op to a cheap no-op. Improve newline usage in debug output.
* The six-argument form of getaddressbyname_r() uses the fifth argument todkf2007-11-131-0/+6
| | | | | indicate whether the lookup succeeded or not on at least one platform. [Bug 1618235]
* Backport of fix for first part of [Bug 1810264]dkf2007-10-301-0/+5
|
* * generic/tclParse.c (Tcl_ParseBraces): fix for possible readMiguel Sofer2007-10-151-0/+5
| | | | after the end of buffer, [Bug 1813528] (Joe Mistachkin).
* * generic/tclObj.c (Tcl_FindCommandFromObj): fix finding a deletedMiguel Sofer2007-10-031-0/+7
| | | | | | command; cannot trigger this from Tcl itself, but crash reported on xotcl. This check is new to 8.4 but exists in 8.5, so this is a backport or something. Thanks Gustaf Neumann.
* * generic/tcl.h (Tcl_DecrRefCount): Update change from 2006-05-29hobbs2007-10-021-0/+5
| | | | to make macro more warning-robust in unbraced if code.
* * README: Bump version number to 8.4.17dgp2007-10-021-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:
* * doc/load.n: Backport corrected example.dgp2007-09-201-1/+5
|
* * unix/Makefile.in: Update `make dist` so that tclDTrace.d isdgp2007-09-191-0/+3
| | | | included in the source code distribution.
* typodgp2007-09-191-1/+0
|
* * generic/tclPkg.c: Backport fix for [1573844] to thedgp2007-09-191-1/+7
| | | | * tests/pkg.test: TCL_TIP268 sections.
* *** 8.4.16 TAGGED FOR RELEASE ***dgp2007-09-181-1/+7
| | | | * changes: updates for 8.4.16 release.
* * unix/tcl.m4 (SunOS-5.1x): replace direct use of '/usr/ccs/bin/ld'das2007-09-151-0/+6
| | | | | in SHLIB_LD by 'cc' compiler driver. * unix/configure: autoconf-2.13
* typodas2007-09-141-1/+1
|
* * generic/tclDTrace.d (new file): add DTrace provider for Tcl; allowsdas2007-09-131-0/+16
| | | | | | | | | | | | | | | * generic/tclCompile.h: tracing of proc and command entry & * generic/tclBasic.c: return, bytecode execution, object * generic/tclExecute.c: allocation and more; with essentially * generic/tclInt.h: zero cost when tracing is inactive; * generic/tclObj.c: enable with --enable-dtrace configure * generic/tclProc.c: arg (disabled by default, will only * unix/Makefile.in: enable if DTrace is present). * unix/configure.in: [Patch 1793984] * macosx/Makefile: enable DTrace support. * unix/configure: autoconf-2.13
* * library/tcltest/tcltest.tcl: Accept underscores and colons indgp2007-09-111-0/+7
| | | | | | * library/tcltest/pkgIndex.tcl: constraint names. Properly handle constraint expressions that return non-numeric boolean results like "false". Bump to tcltest 2.2.9. [Bug 1772989; RFE 1071322]
* Fix for AMD64 target symbols builds.patthoyts2007-09-111-0/+5
|
* * generic/tclLink.c (Tcl_UpdateLinkedVar): guard against var beinghobbs2007-09-101-0/+5
| | | | unlinked. [Bug 1740631] (maros)
* * generic/tclClock.c (FormatClock): Claimed additional space forKevin B Kenny2007-08-251-0/+7
| | | | | | the %c format code to avoid a buffer overrun when formatting (for example) a Friday in February in the Portuguese locale. [Bug 1751117]
* * generic/tclCompile.c: replaced copy loop that tripped someMiguel Sofer2007-08-241-0/+5
| | | | compilers with memmove [Bug 1780870]
* * tests/trace.test: Backport some tests.dgp2007-08-141-0/+4
|
* * unix/tclLoadDyld.c: use dlfcn API on Mac OS X 10.4 and later; fixdas2007-08-141-0/+7
| | | | | | issues with loading from memory on intel and 64bit; add debug messages. * tests/load.test: add test load-10.1 for loading from vfs.
* * unix/Makefile.in: add support for compile flags specific todas2007-08-071-0/+14
| | | | | | | | | | object files linked directly into executables. * unix/configure.in (Darwin): only use -seg1addr flag when prebinding; use -mdynamic-no-pic flag for object files linked directly into exes; support overriding TCL_PACKAGE_PATH in environment. * unix/configure: autoconf-2.13
* * generic/tclParse.c: In contexts where interp and parsePtr->interpdgp2007-07-191-0/+5
| | | | might be different, be sure to use the latter for error reporting.
* * library/init.tcl (unknown): Corrected inconsistent error messagedgp2007-07-051-0/+5
| | | | in interactive [unknown] when empty command is invoked. [Bug 1743676]
* De-fang an instance of the shared-result anti-pattern. [Bug 1716704]dkf2007-06-301-0/+5
|
* Prevent RemeberSyncObj() from growing the syncvasiljevic2007-06-301-0/+6
| | | | | object lists by reusing already free'd slots, if possible. See discussion on Bug 1726873 for more information.
* * generic/tclAlloc.c: on Darwin, ensure memory allocated bydas2007-06-291-0/+6
| | | | | * generic/tclThreadAlloc.c: the custom TclpAlloc()s is aligned to 16 byte boundaries (as is the case with the Darwin system malloc).
* formattingdgp2007-06-271-2/+2
|
* * generic/tclCmdMZ.c: Corrected broken trace reversal logic indgp2007-06-271-0/+7
| | | | | | * generic/tclTest.c: TclCheckInterpTraces that led to infinite loop * tests/basic.test: when multiple Tcl_CreateTrace traces were set and one of them did not fire due to level restrictions. [Bug 1743931].
* * macosx/tclMacOSXNotify.c (AtForkChild): don't call CoreFoundationdas2007-06-231-3/+8
| | | | APIs after fork() on systems where that would lead to an abort().
* * README: updated links. [Bug 1715081]hobbs2007-06-101-0/+4
|
* * unix/configure.in (Darwin): add plist for tclsh; link thedas2007-06-061-0/+9
| | | | | | | | * unix/Makefile.in (Darwin): Tcl and tclsh plists into their * macosx/Tclsh-Info.plist.in (new): binaries in all cases. * unix/tcl.m4 (Darwin): fix CF checks in fat 32&64bit builds. * unix/configure: autoconf-2.13
* * tests/result.test (result-6.2): Add test for Bug 1649062 sodgp2007-06-051-0/+5
| | | | that 8.4 and 8.5 both test the same outcome and we verify compatibility.
* * README: Bump version number to 8.4.16dgp2007-05-301-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:
* * unix/tclUnixThrd.c (Tcl_JoinThread): fix for 64-bit handling ofhobbs2007-05-291-0/+5
| | | | pthread_join exit return code storage. [Bug 1712723]
* typocore_8_4_15dgp2007-05-241-1/+0
|
* * generic/tclIO.c: Backport memleak fix in TclFinalizeIOSubsystem.dgp2007-05-241-1/+6
|
* * tests/fCmd.test: Backport the notNetworkFilesystem constraint.dgp2007-05-171-1/+3
|
* Mark tag for 8.4.15 (RC1) releasedgp2007-05-161-0/+4
|
* * generic/tclNamesp.c: Plugged memory leak related todgp2007-05-151-0/+3
| | | | [namespace delete ::]. [Bug 1716782]
* * changes: updates for 8.4.15 release.dgp2007-05-151-0/+7
| | | | | * win/tclWinReg.c: Bump to registry 1.1.5 to account * library/reg/pkgIndex.tcl: for [1682211] bug fix.
* * generic/tclInt.h: TclFinalizeThreadAlloc() is always defined,dgp2007-05-101-0/+3
| | | | so make sure it is also always declared.
* [Tcl Bug 1706140]dgp2007-05-101-0/+19
| | | | | | | | | | | | | | | | | * generic/tclCmdMZ.c (Trace*Proc): Update Tcl_VarTraceProcs so * generic/tclLink.c (LinkTraceProc): that they call * generic/tclUtil.c (TclPrecTraceProc): Tcl_InterpDeleted() for themselves, and do not rely on (frequently buggy) setting of the TCL_INTERP_DESTROYED flag by the trace core. * generic/tclVar.c: Update callers of CallVarTraces to not pass in the TCL_INTERP_DESTROYED flag. Also apply filters so that public routines only pass documented flag values down to lower level routines. * generic/tclVar.c (CallVarTraces): The setting of the TCL_INTERP_DESTROYED flag is now done entirely within the CallVarTraces routine, the only place it can be done right.
* * unix/Makefile.in: add 'tclsh' dependency to install targets that relydas2007-04-301-0/+5
| | | | on tclsh, fixes parallel 'make install' from empty build dir.
* * macosx/tclMacOSXNotify.c: fix warnings.das2007-04-291-0/+22
| | | | | | | | | | * macosx/README: sync whitespace/formatting with HEAD. * macosx/tclMacOSXBundle.c: * macosx/tclMacOSXNotify.c: * macosx/Makefile: fix/add copyright and license refs. * macosx/tclMacOSXBundle.c: * macosx/Tcl-Info.plist.in:
* Restored Cygwin buildability [Bug 1387154]Kevin B Kenny2007-04-211-2/+3
|
* * generic/tclInt.decls: Yet another round of attemptingKevin B Kenny2007-04-211-0/+10
| | | | | | | | | * generic/tclInt.h: to get the correct type signature * unix/tclUnixPort.h: for TclpLocaltime and TclpGmtime. * unix/tclUnixTime.c: CONST TclpTime_t is a 'time_t *CONST' * win/tclWinTime.c: and not a 'CONST time_t*'! * generic/tclIntDecls.h: [Bug 1677275] * generic/tclIntPlatDecls.h: Regenerated.
* Thread exit handler marks the current thread as un-initialized.vasiljevic2007-03-241-0/+8
| | | | | | This allows exit handlers that are registered later to re-initialize this subsystem in case they need to use some sync primitives (cond variables) from this file again.