|
From: Don P. <dg...@us...> - 2007-03-12 19:28:48
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv16096 Modified Files: ChangeLog Log Message: * generic/tclEvent.c (HandleBgErrors): Make efficient private copy * tests/event.test (event-5.3): of the command prefix for the interp's background error handling command to avoid panics due to pointers to memory invalid after shimmering. [Bug 1670155] |
|
From: Don P. <dg...@us...> - 2007-03-12 20:45:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv15532 Modified Files: ChangeLog Log Message: * generic/tclExecute.c (INST_FOREACH_STEP4): Make private copy * tests/foreach.test (foreach-10.1): of value list to be assigned to variables so that shimmering of that list doesn't lead to invalid pointers. [Bug 1671087] |
|
From: Don P. <dg...@us...> - 2007-03-13 15:59:56
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28768 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclVar.c (TclArraySet): Re-fetch pointers for the list * tests/var.test (var-17.1): argument of [array set] each time through the loop as defense against possible shimmer issues. [Bug 1669489]. |
|
From: Don P. <dg...@us...> - 2007-03-13 16:26:33
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv8818 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclExecute.c (INST_FOREACH_STEP4): Re-fetch pointers for * tests/foreach.test (foreach-10.1): the value list each iteration of the loop as defense against shimmers. [Bug 1671087] |
|
From: Mo D. <md...@us...> - 2007-03-15 22:05:20
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv29736 Modified Files: ChangeLog Log Message: * tests/parse.test: Add two backslash newline parse tests. |
|
From: Mo D. <md...@us...> - 2007-03-15 22:54:56
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17196 Modified Files: ChangeLog Log Message: * win/Makefile.in: Fully qualify LIBRARY_DIR so that `make test` does not depend on working dir. |
|
From: Mo D. <md...@us...> - 2007-03-16 00:57:38
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4888 Modified Files: ChangeLog Log Message: * generic/tclIOUtil.c (Tcl_Stat): Reimplement workaround to avoid gcc warning by using local variables. When the macro argument is of type long long instead of long, the incorrect warning is not generated. |
|
From: Kevin B K. <ke...@us...> - 2007-03-18 12:04:19
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25620 Modified Files: ChangeLog Log Message: * win/tclWinReg.c (GetKeyNames): Size the buffer for enumerating 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. |
|
From: Kevin B K. <ke...@us...> - 2007-03-18 12:04:26
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv29878 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * win/tclWinReg.c (GetKeyNames): Size the buffer for enumerating 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. |
|
From: Donal K. F. <dk...@us...> - 2007-03-19 11:50:49
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19221 Modified Files: ChangeLog Log Message: Fixed bug in regsub example. |
|
From: Don P. <dg...@us...> - 2007-03-19 16:59:07
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv24132 Modified Files: ChangeLog Log Message: * generic/tclBasic.c (Tcl_CreateMathFunc): Replaced some * generic/tclEvent.c (Tcl_CreateThread): calls to Tcl_Alloc() * generic/tclObj.c (UpdateStringOfBignum): with calls to * unix/tclUnixTime.c (SetTZIfNecessary): ckalloc(), which better * win/tclAppInit.c (setargv): supports memory debugging. |
|
From: Don P. <dg...@us...> - 2007-03-19 17:06:30
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv27503 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclEvent.c (Tcl_CreateThread): Replaced some calls to * generic/tclPkg.c (CheckVersion): Tcl_Alloc() with calls to * unix/tclUnixTime.c (SetTZIfNecessary): ckalloc(), which better * win/tclAppInit.c (setargv): supports memory debugging. |
|
From: Don P. <dg...@us...> - 2007-03-19 21:00:53
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1308 Modified Files: ChangeLog Log Message: * generic/tclBinary.c (Tcl_SetByteArrayLength): Replaced ckalloc() / memcpy() sequence with ckrealloc() call. |
|
From: Don P. <dg...@us...> - 2007-03-20 03:16:13
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv27819 Modified Files: ChangeLog Log Message: * generic/tclCompile.c: Revise the various expansion routines for CompileEnv fields to use ckrealloc() where appropriate. |
|
From: Kevin B K. <ke...@us...> - 2007-03-20 19:47:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17903 Modified Files: ChangeLog Log Message: 2007-03-20 Kevin B. Kenny <ke...@ac...> * generic/tclDate.c: Rebuilt, despite Donal Fellows's comment when committing it that no rebuild was required. * generic/tclGetDate.y: According to Donal Fellows, "Introduce modern formatting standards; no need for rebuild of tclDate.c." * library/tzdata/America/Cambridge_Bay: * library/tzdata/America/Havana: * library/tzdata/America/Inuvik: * library/tzdata/America/Iqaluit: * library/tzdata/America/Pangnirtung: * library/tzdata/America/Rankin_Inlet: * library/tzdata/America/Resolute: * library/tzdata/America/Yellowknife: * library/tzdata/Asia/Choibalsan: * library/tzdata/Asia/Dili: * library/tzdata/Asia/Hovd: * library/tzdata/Asia/Jakarta: * library/tzdata/Asia/Jayapura: * library/tzdata/Asia/Makassar: * library/tzdata/Asia/Pontianak: * library/tzdata/Asia/Ulaanbaatar: * library/tzdata/Europe/Istanbul: Upgraded to Olson's tzdata2007d. * generic/tclListObj.c (TclLsetList, TclLsetFlat): * tests/lset.test: Changes to deal with shared internal representation for lists passed to the [lset] command. Thanks to Don Porter for fixing this issue. [Bug 1677512] |
|
From: Don P. <dg...@us...> - 2007-03-20 21:20:13
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv2493 Modified Files: ChangeLog Log Message: * generic/tclEnv.c: Some more ckalloc -> ckrealloc replacements. * generic/tclLink.c: |
|
From: Don P. <dg...@us...> - 2007-03-21 16:25:28
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv30839 Modified Files: ChangeLog Log Message: * generic/tclExecute.c: More ckalloc -> ckrealloc conversions. * generic/tclLiteral.c: |
|
From: Don P. <dg...@us...> - 2007-03-21 18:02:58
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4174 Modified Files: ChangeLog Log Message: * generic/tclExecute.c: More ckalloc -> ckrealloc conversions. * generic/tclLiteral.c: * generic/tclNamesp.c: * generic/tclParse.c: * generic/tclPreserve.c: * generic/tclStringObj.c: * generic/tclUtil.c: |
|
From: Don P. <dg...@us...> - 2007-03-22 18:19:48
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv7123 Modified Files: ChangeLog Log Message: * generic/tclExecute.c: Revised GrowEvaluationStack to take an argument specifying the growth required by the caller, so that a single reallocation / copy is the most that will ever be needed even when required growth is large. |
|
From: Don P. <dg...@us...> - 2007-03-22 20:53:33
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv8712 Modified Files: ChangeLog Log Message: * generic/tclCmdAH.c (Tcl_ForeachObjCmd): Replaced arrays on the C stack and ckalloc calls with TclStackAlloc calls to use memory on Tcl's evaluation stack. |
|
From: Kevin B K. <ke...@us...> - 2007-03-23 18:45:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv7759 Modified Files: ChangeLog Log Message: * win/Makefile.in: Added code to keep a Cygwin path name from leaking into LIBRARY_DIR when doing 'make test' or 'make runtest'. |
|
From: miguel s. <ms...@us...> - 2007-03-23 19:59:36
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv6421 Modified Files: ChangeLog Log Message: * generic/tclBasic.c (DeleteInterpProc): pop the root frame pointer before deleting the global namespace [Bug 1658572] |
|
From: Zoran V. <vas...@us...> - 2007-03-24 09:31:12
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv18537 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Thread exit handler marks the current thread as un-initialized. 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. |
|
From: Zoran V. <vas...@us...> - 2007-03-24 09:33:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19838 Modified Files: ChangeLog Log Message: Thread exit handler marks the current thread as un-initialized. 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. |
|
From: Don P. <dg...@us...> - 2007-03-27 16:44:09
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19182 Modified Files: ChangeLog Log Message: * generic/tclCmdMZ.c (STR_MAP): Replace ckalloc calls with TclStackAlloc calls. |