summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* fix leaks in throw and unset compilersmig2011-03-011-0/+3
|
* This is [Patch 3168398], Joe Mistachkin's optimisation of Tip #285mig2011-03-011-0/+11
|
* * generic/tclExecute.c (ExprObjCallback): fix object leakmig2011-03-011-0/+2
|
* * generic/tclExecute.c (TEBCresume): store local var array and constants in ↵mig2011-03-011-0/+4
| | | | automatic vars to reduce indirection, slight perf increase
* fix typo in dkf's last commitmig2011-03-011-0/+3
|
* * generic/tclBasic.c (TclNREvalObjv): dont do the trampoline dance for ↵mig2011-03-011-0/+5
| | | | commands that do not have an nreProc, [Patch 3168229]
* Reorganization of call context reference count management so that codedkf2011-03-011-0/+9
| | | is (mostly) simpler.
* * doc/RegExp.3: [Bug 3165108]: Corrected documentation of descriptiondgp2011-02-281-2/+8
| | | of subexpression info in Tcl_RegExpInfo structure.
* Fix various gcc-4.5.2 64-bit warning messages,nijtmans2011-01-251-0/+8
| | | | e.g. by using full 64-bits for socket fd's
* typodgp2011-01-251-1/+1
|
* Don't miss 64-bit address bits in panic message.nijtmans2011-01-251-0/+4
|
* [Enh #3159920]: Tcl_ObjPrintf() crashes with bad format specifier.nijtmans2011-01-191-1/+8
|
* * generic/tclOOMethod.c (PushMethodCallFrame): [Bug 3001438]: Makedkf2011-01-181-6/+14
| | | | | | | sure that the cmdPtr field of the procPtr is correct and relevant at all times so that [info frame] can report sensible information about a frame after a return to it from a recursive call, instead of probably crashing (depending on what else has overwritten the Tcl stack!)
* Various mismatches between Tcl_Panic format string and its arguments,nijtmans2011-01-181-0/+10
| | | | discovered thanks to [Bug 3159920]
* [Bug 3148192]: Commands "read/puts" incorrectly interpret parameters.nijtmans2011-01-171-0/+7
| | | | Improved error-message regarding legacy form.
* * doc/tclvars.n:Kevin B Kenny2011-01-151-0/+11
| | | | | | | | | | * generic/tclStrToD.c: * generic/tclUtil.c (Tcl_PrintDouble): * tests/util.test (util-16.*): Restored full Tcl 8.4 compatibility for the formatting of floating point numbers when $::tcl_precision is not zero. Added compatibility tests to make sure that excess trailing zeroes are suppressed for all eight major code paths. [Bug 3157475]
* handle --enable-64bit=ia64 for gccnijtmans2011-01-121-2/+5
| | | | more accurate test for correct <intrin.h>
* VS 2005 64-bit does not have intrin.h, and does not need it.nijtmans2011-01-121-1/+1
|
* VS 2005 64-bit does not have intrin.h, and does not need it.nijtmans2011-01-121-0/+2
|
* Use _vsnprintf in stead of vsnprintf, because MSVC 6 doesn't have it. ↵nijtmans2011-01-121-0/+5
| | | | Reported by andreask.
* * tests/util.test (util-15.*): Added test cases for floating pointKevin B Kenny2011-01-071-0/+8
| | | | | | | conversion of the largest denormal and the smallest normal number, to avoid any possibility of the failure suffered by PHP in the last couple of days. (They didn't fail, so no actual functional change.)
* * tests/package.test, tests/pkg.test: Coalesce these tests into onedkf2011-01-061-0/+8
| | | | | | | file that is concerned with the package system. Convert to use tcltest2 properly. * tests/autoMkindex.test, tests/pkgMkIndex.test: Convert to use tcltest2 properly.
* Clean up of tests and conversion to tcltest 2. Target has been to get init anddkf2011-01-011-0/+10
| | | | cleanup code out of the test body and into the -setup/-cleanup stanzas.
* * tests/execute.test (execute-11.1): [Bug 3142026]: Added test thatdkf2011-01-011-0/+5
| | | | fails (with a crash) in an unfixed memdebug build on 64-bit systems.
* * generic/tclCmdIL.c (SortElement): Use unions properly in thedkf2011-01-011-6/+13
| | | | | | definition of this structure so that there is no need to use nasty int/pointer type punning. Made it clearer what the purposes of the various parts of the structure are.
* Fix [Bug 3148192]: [load] broken. Assure that those files are never compiled ↵nijtmans2010-12-311-0/+5
| | | | with -DSTATIC_BUILD
* * generic/tclExecute.c (GrowEvaluationStack): off-by-one error inMiguel Sofer2010-12-301-0/+7
| | | | | | sizing the new allocation - was ok in comment but wrong in the code. Triggered by [Bug 3142026] which happened to require exactly one more than what was in existence.
* * generic/tclCmdIL.c (Tcl_LsortObjCmd): Fix crash when multiple -indexdkf2010-12-271-18/+27
| | | | options are used. Simplified memory handling logic.
* [Patch 3059922]: fixes for mingw64 - gcc4.5.1 tdm64-1: completed for all ↵nijtmans2010-12-211-0/+5
| | | | environments.
* Explicitely test for intrinsics support in compiler, before assuming only ↵nijtmans2010-12-201-0/+7
| | | | MSVC has it.
* [Patch3059922]: fixes for mingw64 - gcc4.5.1 tdm64-1:nijtmans2010-12-191-1/+1
| | | | Fixed for gcc, not yet for MSVC 64-bit.
* [Patch 3124554]: fixes for mingw64 - gcc4.5.1 tdm64-1:nijtmans2010-12-191-0/+5
| | | | Fixed for gcc, not yet for MSVC 64-bit.
* Remove unwanted/obsolete 'ddd' target.stwo2010-12-171-0/+4
|
* Clean up '.PHONY:' targets: Arrange those common to Tcl and Tk as in Tk's ↵stwo2010-12-171-0/+6
| | | | Makefile.in, add any missing ones and remove duplicates.
* [Bug 2446711]: Remove 'allpatch' target.stwo2010-12-171-0/+4
|
* Use 'rpmbuild', not 'rpm' [Bug 2537626].stwo2010-12-171-0/+4
|
* [Patch 3124554]: Move WishPanic from Tk to Tclnijtmans2010-12-161-1/+6
| | | | Better communication with debugger, if present.
* Restore abort() in Tcl_Panic() as it was before.nijtmans2010-12-151-2/+6
| | | | [Patch 3124554] use ExitProcess() here, like in wish.
* [Bug 3137454]: Tcl CVS HEAD does not build on GCC 3nijtmans2010-12-141-0/+4
|
* * win/tclWinSock.c (CreateSocket): Swap the loops overrmax2010-12-141-0/+8
| | | | | | | * unix/tclUnixSock.c (CreateClientSocket): local and remote addresses, so that the system's address preference for the remote side decides which family gets tried first. Cleanup and clarify some of the comments.
* [Bug 3135271] Link error due to hidden symbols (CentOS 4.2)nijtmans2010-12-131-0/+3
|
* Use gcc's __builtin_trap(), when available, to enter the debugger after a panic.nijtmans2010-12-131-0/+7
| | | | Undocumented feature, see [Patch 3124554]: Move WishPanic from Tk to Tcl.
* Better building on OpenBSD.stwo2010-12-121-0/+5
|
* [Bug 3129448]: Possible over-allocation on 64-bit platforms, part 2nijtmans2010-12-101-0/+10
|
* Make sure [fcopy -size ... -command ...] always calls the callback ↵ferrieux2010-12-101-0/+5
| | | | asynchronously, even for size zero.
* Change first parameter of TclSockMinimumBuffers to ClientData, and ↵nijtmans2010-12-101-0/+9
| | | | TclWin(Get|Set)SockOpt to SOCKET, because on Win64 those are 64-bit, which does not fit.
* Fix gcc -Wextra warning: missing initializernijtmans2010-12-101-0/+11
|
* * tests/fCmd.test: Improve sanity of constraints now that we don'tdkf2010-12-091-0/+3
| | | | support anything before Windows 2000.
* * generic/tclCmdAH.c (TclInitFileCmd, TclMakeFileCommandSafe, ...):dkf2010-12-091-0/+17
| | | | | | | | | | | | | | | | | | Break up [file] into an ensemble. Note that the ensemble is safe in itself, but the majority of its subcommands are not. * generic/tclFCmd.c (FileCopyRename,TclFileDeleteCmd,TclFileAttrsCmd) (TclFileMakeDirsCmd): Adjust these subcommand implementations to work inside an ensemble. (TclFileLinkCmd, TclFileReadLinkCmd, TclFileTemporaryCmd): Move these subcommand implementations from tclCmdAH.c, where they didn't really belong. * generic/tclIOCmd.c (TclChannelNamesCmd): Move to more appropriate source file. * generic/tclEnsemble.c (TclMakeEnsemble): Start of code to make partially-safe ensembles. Currently does not function as expected due to various shortcomings in how safe interpreters are constructed. * tests/cmdAH.test, tests/fCmd.test, tests/interp.test: Test updates to take into account systematization of error messages.
* * tests/append.test, tests/appendComp.test: Clean up tests so thatdkf2010-12-091-0/+6
| | | | | they don't leave things in the global environment (detected when doing -singleproc testing).