From: Kevin B K. <ke...@us...> - 2009-06-08 16:37:13
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14901 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: New DST rule for Bangladesh (Olson's tzdata2009i) |
From: Kevin B K. <ke...@us...> - 2009-06-09 14:58:30
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21635 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * generic/tclGetDate.y: Fixed a thread safety bug in the generated * library/clock.tcl: Bison parser (needed a %pure-parser * tests/clock.test: declaration to avoid static variables). Discovered that the %pure-parser declaration allowed for returning the Bison error message to the Tcl caller in the event of a syntax error, so did so. * generic/tclDate.c: bison 2.3 |
From: Kevin B K. <ke...@us...> - 2009-06-09 19:38:47
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21571 Modified Files: ChangeLog Log Message: * generic/tclGetDate.y: Fixed a thread safety bug in the generated * library/clock.tcl: Bison parser (needed a %pure-parser * tests/clock.test: declaration to avoid static variables). Discovered that the %pure-parser declaration allowed for returning the Bison error message to the Tcl caller in the event of a syntax error, so did so. * generic/tclDate.c: bison 2.3 |
From: Don P. <dg...@us...> - 2009-06-10 14:45:08
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31005 Modified Files: ChangeLog Log Message: * generic/tclStringObj.c: Corrected failures to deal with the "pure unicode" representation of an empty string. Thanks to Julian Noble for reporting the problem. [Bug 2803109] |
From: Don P. <dg...@us...> - 2009-06-10 21:38:25
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv16394 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * generic/tclStringObj.c: Revised [format] to not overflow the integer calculations computing the length of the %ll formats of really big integers. Also added protections so that [format]s that would produce results overflowing the maximum string length of Tcl values throw a normal Tcl error instead of a panic. [Bug 2801413] |
From: Don P. <dg...@us...> - 2009-06-10 21:40:06
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv16685 Modified Files: ChangeLog Log Message: * generic/tclStringObj.c: Revised [format] to not overflow the integer calculations computing the length of the %ll formats of really big integers. Also added protections so that [format]s that would produce results overflowing the maximum string length of Tcl values throw a normal Tcl error instead of a panic. [Bug 2801413] |
From: Don P. <dg...@us...> - 2009-06-10 22:11:26
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21188 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
From: Don P. <dg...@us...> - 2009-06-13 14:25:19
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv16750 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * generic/tclCompile.c: The value stashed in iPtr->compiledProcPtr * generic/tclProc.c: when compiling a proc survives too long. We * tests/execute.test: only need it there long enough for the right TclInitCompileEnv() call to re-stash it into envPtr->procPtr. Once that is done, the CompileEnv controls. If we let the value of iPtr->compiledProcPtr linger, though, then any other bytecode compile operation that takes place will also have its CompileEnv initialized with it, and that's not correct. The value is meant to control the compile of the proc body only, not other compile tasks that happen along. Thanks to Carlos Tasada for discovering and reporting the problem. [Bug 2802881]. |
From: Don P. <dg...@us...> - 2009-06-13 14:31:56
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17647 Modified Files: ChangeLog Log Message: * generic/tclCompile.c: The value stashed in iPtr->compiledProcPtr * generic/tclProc.c: when compiling a proc survives too long. We * tests/execute.test: only need it there long enough for the right TclInitCompileEnv() call to re-stash it into envPtr->procPtr. Once that is done, the CompileEnv controls. If we let the value of iPtr->compiledProcPtr linger, though, then any other bytecode compile operation that takes place will also have its CompileEnv initialized with it, and that's not correct. The value is meant to control the compile of the proc body only, not other compile tasks that happen along. Thanks to Carlos Tasada for discovering and reporting the problem. [Bug 2802881]. |
From: Don P. <dg...@us...> - 2009-06-13 14:32:46
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17887 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
From: Don P. <dg...@us...> - 2009-06-13 14:38:46
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18699 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclCompile.c: The value stashed in iPtr->compiledProcPtr * generic/tclProc.c: when compiling a proc survives too long. We * tests/execute.test: only need it there long enough for the right TclInitCompileEnv() call to re-stash it into envPtr->procPtr. Once that is done, the CompileEnv controls. If we let the value of iPtr->compiledProcPtr linger, though, then any other bytecode compile operation that takes place will also have its CompileEnv initialized with it, and that's not correct. The value is meant to control the compile of the proc body only, not other compile tasks that happen along. Thanks to Carlos Tasada for discovering and reporting the problem. [Bug 2802881]. |
From: Donal K. F. <dk...@us...> - 2009-06-15 09:41:46
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28890 Modified Files: ChangeLog Log Message: Apply last useful bit of [Patch 557486]. |
From: Reinhard M. <rm...@us...> - 2009-06-15 16:27:33
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6668 Modified Files: ChangeLog Log Message: * unix/tclUnixPort.h: Move all socket-related code from tclUnixChan.c * unix/tclUnixChan.c: to tclUnixSock.c. * unix/tclUnixSock.c: |
From: Don P. <dg...@us...> - 2009-06-15 18:51:39
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4961 Modified Files: ChangeLog Log Message: * generic/tclStringObj.c: sprintf() -> Tcl_ObjPrintf() conversion. |
From: Don P. <dg...@us...> - 2009-06-15 18:52:27
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5201 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * generic/tclStringObj.c: sprintf() -> Tcl_ObjPrintf() conversion. |
From: Alexandre F. <fer...@us...> - 2009-06-17 19:24:07
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30687 Modified Files: ChangeLog Log Message: Applied a patch by George Peter Staplin drastically reducing the ambition of [exit] wrt finalization, and thus solving many multi-thread teardown issues [Bugs 2001201, 486399, and possibly 597575, 990457, 1437595, 2750491]. |
From: Donal K. F. <dk...@us...> - 2009-06-18 09:41:28
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10532 Modified Files: ChangeLog Log Message: Apply patch from [Bug 988703]. Many thanks to Joe Mistachkin for development. |
From: Pat T. <pat...@us...> - 2009-06-24 13:14:50
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7512 Modified Files: ChangeLog Log Message: Clean up procs after testing to avoid problems with -singleproc testing [Bug 2811492] |
From: Don P. <dg...@us...> - 2009-06-24 14:10:48
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2610 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
From: Don P. <dg...@us...> - 2009-06-24 15:18:58
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25096 Modified Files: Tag: dgp-refactor ChangeLog Log Message: Merge updates from HEAD |
From: Donal K. F. <dk...@us...> - 2009-06-24 15:29:42
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27136 Modified Files: ChangeLog Log Message: Fix [Bug 2811598]. |
From: Don P. <dg...@us...> - 2009-06-25 14:57:36
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13253 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
From: Daniel A. S. <da...@us...> - 2009-06-26 18:15:26
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24565 Modified Files: ChangeLog Log Message: * macosx/Tcl-Common.xcconfig: update projects for Xcode 3.1 and 3.2, * macosx/Tcl.xcode/*: standardize on gcc 4.2, remove obsolete * macosx/Tcl.xcodeproj/*: configurations and pre-Xcode project. * macosx/Tcl.pbproj/* (removed): * macosx/README: update project docs, cleanup. * unix/Makefile.in: update dist target for project changes. |
From: Don P. <dg...@us...> - 2009-06-29 14:15:07
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30726 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
From: Daniel A. S. <da...@us...> - 2009-06-30 01:20:53
|
Update of /cvsroot/tcl/tcl In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27373 Modified Files: ChangeLog Log Message: * generic/tclInt.h: add assert macros for clang static * generic/tclPanic.c: analyzer and redefine Tcl_Panic to * generic/tclStubInit.c: assert after panic in clang PURIFY builds. * generic/tclCmdIL.c: add clang assert for false positive from static analyzer. |