|
From: Vince D. <vin...@us...> - 2004-05-08 15:51:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24248 Modified Files: ChangeLog Log Message: fix to some compiler warnings |
|
From: David G. <dav...@us...> - 2004-05-10 19:03:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7006 Modified Files: ChangeLog Log Message: no message |
|
From: David G. <dav...@us...> - 2004-05-10 19:11:39
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9180 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: no message |
|
From: David G. <dav...@us...> - 2004-05-10 20:52:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv375 Modified Files: ChangeLog Log Message: no message |
|
From: David G. <dav...@us...> - 2004-05-10 20:57:58
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1898 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: no message |
|
From: David G. <dav...@us...> - 2004-05-10 21:52:14
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14178 Modified Files: ChangeLog Log Message: no message |
|
From: Donal K. F. <dk...@us...> - 2004-05-10 22:10:42
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17257 Modified Files: ChangeLog Log Message: Added examples. |
|
From: Donal K. F. <dk...@us...> - 2004-05-11 09:08:56
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4093 Modified Files: ChangeLog Log Message: Another example and a bit more clarity. |
|
From: Vince D. <vin...@us...> - 2004-05-11 14:10:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3760 Modified Files: ChangeLog Log Message: documentation for glob -types d with symbolic links |
|
From: Donal K. F. <dk...@us...> - 2004-05-11 21:20:29
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12262 Modified Files: ChangeLog Log Message: More and deeper examples. |
|
From: Donal K. F. <dk...@us...> - 2004-05-11 21:31:52
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14682 Modified Files: ChangeLog Log Message: Added examples |
|
From: miguel s. <ms...@us...> - 2004-05-12 17:44:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27325 Modified Files: ChangeLog Log Message: Optimisations for INST_START_CMD [Bug 926164]. * generic/tclCompile.c (TclCompileScript): avoid emitting INST_START_CMD as the first instruction in a bytecoded Tcl_Obj. It is not needed, as the checks are done before calling TEBC. * generic/tclExecute.c (TclExecuteByteCode): runtime peephole optimisation: check at INST_POP if the next instruction is INST_START_CMD, in which case we fall through. |
|
From: Donal K. F. <dk...@us...> - 2004-05-13 10:13:03
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29778 Modified Files: ChangeLog Log Message: TIP#129 implementation. Probably also much more breakage in the test suite too |
|
From: Donal K. F. <dk...@us...> - 2004-05-13 12:59:27
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31827 Modified Files: ChangeLog Log Message: TIP#143 implementation; still needs docs and more tests... |
|
From: miguel s. <ms...@us...> - 2004-05-14 19:15:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10693 Modified Files: ChangeLog Log Message: * generic/tclExecute.h: * generic/tclCompile.h: the math functions receive a pointer to top of the stack (tosPtr) instead of the execution environment (eePtr). First step towards a change in the execution stack management - it is now only used within TEBC. |
|
From: Kevin B K. <ke...@us...> - 2004-05-14 21:41:17
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11247 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: 2004-05-14 Kevin B. Kenny <ke...@ac...> * generic/tclInt.decls: Promoted TclpLocaltime and TclpGmtime * generic/tclIntDecls.h: from Unix-specific stubs to the generic * generic/tclIntPlatDecls.h: internal Stubs table. Reran 'genstubs' * generic/tclStubInit.c: * unix/tclUnixPort.h: * generic/tclClock.c: Changed a buggy 'GMT' timezone specification to the correct 'GMT0'. [Bug #922848] * unix/tclUnixThrd.c: Moved TclpGmtime and TclpLocaltime to unix/tclUnixTime.c where they belong. * unix/tclUnixTime.c (TclpGmtime, TclpLocaltime, TclpGetTimeZone, ThreadSafeGMTime [removed], ThreadSafeLocalTime [removed], SetTZIfNecessary, CleanupMemory): Restructured to make sure that the same mutex protects all calls to localtime, gmtime, and tzset. Added a check in front of those calls to make sure that the TZ env var hasn't changed since the last call to tzset, and repeat tzset if necessary. [Bug #942078] Removed a buggy test of the Daylight Saving Time information in 'gettimeofday' in favor of applying 'localtime' to a known value. [Bug #922848] * tests/clock.test (clock-3.14): Added test to make sure that changes to $env(TZ) take effect immediately. * win/tclWinTime.c (TclpLocaltime, TclpGmtime): Added porting layer for 'localtime' and 'gmtime' calls. |
|
From: Kevin B K. <ke...@us...> - 2004-05-14 21:43:35
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11633 Modified Files: ChangeLog Log Message: 2004-05-14 Kevin B. Kenny <ke...@ac...> * generic/tclInt.decls: Promoted TclpLocaltime and TclpGmtime * generic/tclIntDecls.h: from Unix-specific stubs to the generic * generic/tclIntPlatDecls.h: internal Stubs table. Reran 'genstubs' * generic/tclStubInit.c: * unix/tclUnixPort.h: * generic/tclClock.c: Changed a buggy 'GMT' timezone specification to the correct 'GMT0'. [Bug #922848] * unix/tclUnixThrd.c: Moved TclpGmtime and TclpLocaltime to unix/tclUnixTime.c where they belong. * unix/tclUnixTime.c (TclpGmtime, TclpLocaltime, TclpGetTimeZone, ThreadSafeGMTime [removed], ThreadSafeLocalTime [removed], SetTZIfNecessary, CleanupMemory): Restructured to make sure that the same mutex protects all calls to localtime, gmtime, and tzset. Added a check in front of those calls to make sure that the TZ env var hasn't changed since the last call to tzset, and repeat tzset if necessary. [Bug #942078] Removed a buggy test of the Daylight Saving Time information in 'gettimeofday' in favor of applying 'localtime' to a known value. [Bug #922848] * tests/clock.test (clock-3.14): Added test to make sure that changes to $env(TZ) take effect immediately. * win/tclWinTime.c (TclpLocaltime, TclpGmtime): Added porting layer for 'localtime' and 'gmtime' calls. |
|
From: miguel s. <ms...@us...> - 2004-05-16 17:25:55
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12262 Modified Files: ChangeLog Log Message: * generic/tclCompile.h: * generic/tclCompile.c: * generic/tclExecute.c: changed implementation of {expand}, last chance while in alpha as ... ***POTENTIAL INCOMPATIBILITY*** Scripts precompiled with ProComp under previous tcl8.5a versions may malfunction due to changed instruction numbers for INST_LIST_INDEX_IMM, INST_LIST_RANGE_IMM and INST_START_CMD. |
|
From: miguel s. <ms...@us...> - 2004-05-16 20:23:07
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17185 Modified Files: ChangeLog Log Message: * generic/tclBasic.c (Tcl_DeleteInterp): * generic/tclExecute.c (INST_START_CMD): interp deletion now modifies the compileEpoch, eliminating the need for the check for interp deletion in INST_START_CMD. |
|
From: miguel s. <ms...@us...> - 2004-05-16 22:26:54
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10015 Modified Files: ChangeLog Log Message: * generic/tclExecute.c (INST_CALL_FUNC1): bugfix; restored (DE)CACHE_STACK_INFO pair around the call - the user defined math function could cause a recursive call to TEBC. |
|
From: miguel s. <ms...@us...> - 2004-05-17 02:06:09
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697 Modified Files: ChangeLog Log Message: * generic/tclExecute.c (TclExecuteByteCode): remove one level of indirection for compiledLocals addressing. |
|
From: miguel s. <ms...@us...> - 2004-05-17 02:16:11
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20808 Modified Files: ChangeLog Log Message: oops ... reverting last (buggy) commit |
|
From: miguel s. <ms...@us...> - 2004-05-17 02:36:52
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24800 Modified Files: ChangeLog Log Message: (FIXED PATCH) * generic/tclExecute.c (TclExecuteByteCode): remove one level of indirection for compiledLocals addressing. |
|
From: Donal K. F. <dk...@us...> - 2004-05-17 09:20:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1798 Modified Files: ChangeLog Log Message: Docbug. [Bug 953374] |
|
From: Donal K. F. <dk...@us...> - 2004-05-17 09:22:18
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2201 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Docbug. [Bug 953374] |