| Commit message (Expand) | Author | Age | Files | Lines |
* | * generic/tclCmdIL.c (SortElement): Use unions properly in the | dkf | 2011-01-01 | 1 | -25/+28 |
|
|
* | * generic/tclExecute.c (GrowEvaluationStack): off-by-one error in | Miguel Sofer | 2010-12-30 | 1 | -4/+4 |
|
|
* | * generic/tclCmdIL.c (Tcl_LsortObjCmd): Fix crash when multiple -index | dkf | 2010-12-27 | 1 | -44/+48 |
|
|
* | Explicitely test for intrinsics support in compiler, before assuming only MSV... | nijtmans | 2010-12-20 | 1 | -5/+7 |
|
|
* | [Patch 3124554]: Move WishPanic from Tk to Tcl | nijtmans | 2010-12-16 | 1 | -1/+24 |
|
|
* | Restore abort() in Tcl_Panic() as it was before. | nijtmans | 2010-12-15 | 1 | -12/+1 |
|
|
* | [Bug 3137454]: Tcl CVS HEAD does not build on GCC 3 | nijtmans | 2010-12-14 | 1 | -2/+2 |
|
|
* | [Bug 3135271] Link error due to hidden symbols (CentOS 4.2) | nijtmans | 2010-12-13 | 1 | -2/+2 |
|
|
* | Use gcc's __builtin_trap(), when available, to enter the debugger after a panic. | nijtmans | 2010-12-13 | 1 | -4/+10 |
|
|
* | [Bug 3129448]: Possible over-allocation on 64-bit platforms, part 2 | nijtmans | 2010-12-10 | 7 | -26/+26 |
|
|
* | Make sure [fcopy -size ... -command ...] always calls the callback asynchrono... | ferrieux | 2010-12-10 | 1 | -1/+38 |
|
|
* | Change first parameter of TclSockMinimumBuffers to ClientData, and TclWin(Get... | nijtmans | 2010-12-10 | 4 | -18/+23 |
|
|
* | Fix gcc -Wextra warning: missing initializer | nijtmans | 2010-12-10 | 8 | -167/+168 |
|
|
* | * generic/tclCmdAH.c (TclInitFileCmd, TclMakeFileCommandSafe, ...): | dkf | 2010-12-09 | 6 | -735/+1613 |
|
|
* | * generic/tclStrToD.c: Tidy up code so that more #ifdef-fery is | dkf | 2010-12-07 | 1 | -1115/+1127 |
|
|
* | [Bug 3129448]: possible over-allocation on 64-bit platforms | nijtmans | 2010-12-06 | 3 | -21/+20 |
|
|
* | * generic/tclUtil.c (TclReToGlob): add extra check for multiple | hobbs | 2010-12-03 | 1 | -2/+14 |
|
|
* | silence gcc warning when using -Wwrite-strings | nijtmans | 2010-12-03 | 2 | -4/+9 |
|
|
* | * generic/tclStrToD.c (SetPrecisionLimits, TclDoubleDigits): | Kevin B Kenny | 2010-12-01 | 1 | -4/+11 |
|
|
* | Allow Tcl_Panic() to enter the debugger on win32 | nijtmans | 2010-12-01 | 2 | -12/+9 |
|
|
* | fix gcc 64-bit warnings: cast from pointer to integer of different size | nijtmans | 2010-12-01 | 5 | -22/+22 |
|
|
* | * generic/tclInt.decls, generic/tclInt.h, generic/tclIntDecls.h: | hobbs | 2010-11-30 | 5 | -25/+101 |
|
|
* | Patch by Miguel, providing a [::tcl::unsupported::inject coroname command arg... | ferrieux | 2010-11-29 | 1 | -2/+51 |
|
|
* | added missing casts that MSVC complained about and deleted unused variable | Kevin B Kenny | 2010-11-29 | 2 | -7/+6 |
|
|
* | 2010-11-29 Kevin B. Kenny <kennykb@acm.org> | Kevin B Kenny | 2010-11-28 | 9 | -404/+2711 |
|
|
* | Tcl_Panic already writes a newline at the end, so the caller doesn't have to ... | nijtmans | 2010-11-19 | 1 | -2/+2 |
|
|
* | * generic/tclNamesp.c: fix leak due to bad looping construct, | Miguel Sofer | 2010-11-18 | 1 | -3/+5 |
|
|
* | * generic/tclNamesp.c: fix leak due to bad looping construct, | Miguel Sofer | 2010-11-18 | 1 | -5/+3 |
|
|
* | * doc/interp.n: [3081184] TIP #378. | andreas_kupries | 2010-11-15 | 4 | -17/+137 |
|
|
* | reverted previous commit: it has effect on the Windows console | nijtmans | 2010-11-15 | 1 | -23/+33 |
|
|
* | Eliminate use of the function Tcl_WinTCharToUtf in generic code | nijtmans | 2010-11-15 | 1 | -33/+23 |
|
|
* | Fix [Bug 3105999]; deallocate temporary structure. | dkf | 2010-11-09 | 1 | -4/+11 |
|
|
* | Add missing 'objs' verb in error message. | ferrieux | 2010-11-08 | 1 | -2/+4 |
|
|
* | fix TCL_ASCII_MAIN usage, as the name suggests | nijtmans | 2010-11-05 | 1 | -5/+7 |
|
|
* | * generic/tclMain.c: Added missing conditional on _WIN32 around code | Kevin B Kenny | 2010-11-04 | 1 | -2/+2 |
|
|
* | [FRQ 491789]: "setargv() doesn't support a unicode cmdline" implemented for T... | nijtmans | 2010-11-04 | 2 | -11/+33 |
|
|
* | Correct typo and mistaken comment. | dgp | 2010-11-04 | 1 | -2/+2 |
|
|
* | * generic/tclCmdMZ.c (TryPostBody): Ensure that errors when setting | dkf | 2010-11-03 | 1 | -1/+3 |
|
|
* | * generic/tclCompCmds.c (TclCompileCatchCmd): | Kevin B Kenny | 2010-11-03 | 1 | -67/+104 |
|
|
* | Stop small [afters] from wasting CPU [Bug 2905784] while keeping accuracy. | ferrieux | 2010-10-29 | 1 | -5/+21 |
|
|
* | * Changelog.2008: Split off from Changelog. | rmax | 2010-10-26 | 1 | -9/+14 |
|
|
* | [Patch 2995655] Report inner contexts in [info errorstack] | ferrieux | 2010-10-20 | 7 | -25/+335 |
|
|
* | * generic/tclCompCmds.c (TclCompileDictForCmd): Update the compilation | dkf | 2010-10-20 | 3 | -27/+37 |
|
|
* | * generic/tclZlib.c (Tcl_ZlibStreamGet): [Bug 3081008]: Ensure that | dkf | 2010-10-19 | 2 | -6/+25 |
|
|
* | * generic/tclZlib.c: Purge code that wrote to the object returned by | dkf | 2010-10-19 | 1 | -50/+55 |
|
|
* | [Bug 3085863]: tclUniData 9 years old | nijtmans | 2010-10-18 | 1 | -1/+1 |
|
|
* | * generic/tclExecute.c (ReleaseDictIterator): Factored out the release | dkf | 2010-10-16 | 1 | -27/+53 |
|
|
* | [Bug 3085863] tclUniData 9 years old: Updated Unicode tables to latest Unicod... | nijtmans | 2010-10-15 | 2 | -972/+1001 |
|
|
* | remove outdated comment | dgp | 2010-10-13 | 1 | -7/+1 |
|
|
* | * generic/tclCompile.c: Alternative fix for [Bugs 467523,983660] where | dgp | 2010-10-13 | 2 | -7/+7 |
|
|