|
From: miguel s. <ms...@us...> - 2004-12-10 13:09:21
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25000 Modified Files: ChangeLog Log Message: optimised loops that initialise a proc's arguments and compiled local variables, removing tests from inner loops. |
|
From: miguel s. <ms...@us...> - 2004-12-11 14:41:52
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10072 Modified Files: ChangeLog Log Message: converting the static function GetNamespaceFromObj() to MODULE_SCOPE TclGetNamespaceFromObj(). |
|
From: miguel s. <ms...@us...> - 2004-12-12 23:16:29
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9017 Modified Files: ChangeLog Log Message: * generic/tclObj.c (TclSetCmdNameObj): special handling for fully qualified command names (as in fix [Patch 456668]). |
|
From: miguel s. <ms...@us...> - 2004-12-13 01:50:26
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9493 Modified Files: ChangeLog Log Message: * generic/tclVar.c (TclArrayObjCmd - ARRAY_NAMES): leaking an object [Bug 1084111] - thanks to Rolf Ade. |
|
From: Kevin B K. <ke...@us...> - 2004-12-13 15:51:43
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11692 Modified Files: ChangeLog Log Message: Add note to clock.n disclaiming full ISO8601 support |
|
From: Kevin B K. <ke...@us...> - 2004-12-13 15:52:29
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11859 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Add note to clock.n disclaiming full ISO8601 support |
|
From: Kevin B K. <ke...@us...> - 2004-12-13 15:56:24
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12617 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Add note to clock.n disclaiming full ISO8601 support |
|
From: Kevin B K. <ke...@us...> - 2004-12-13 21:23:16
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29811 Modified Files: Tag: kennykb-numerics-branch ChangeLog Log Message: Added small-integer multiplication, bit shift |
|
From: Don P. <dg...@us...> - 2004-12-13 22:11:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9054 Modified Files: ChangeLog Log Message: * generic/tclEncoding.c: Plugged some memory leaks. Thanks to * generic/tclUtil.c: Rolf Ade for reports and testing [Bug 1083082] |
|
From: Don P. <dg...@us...> - 2004-12-13 22:17:40
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10986 Modified Files: ChangeLog Log Message: * generic/tcl.h: Restored extern "C" guards so that C++ code sees function pointer typedef linkage consistent with earlier Tcl releases. [Bug 1082349]. |
|
From: Don P. <dg...@us...> - 2004-12-14 16:31:07
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7061 Modified Files: ChangeLog Log Message: * unix/configure.in: Added special processing to remove "$U" from libraries in the LIBOBJS value. This is an auto-make-ism we need to avoid. [Bug 1081541] * unix/configure: autoconf-2.57 |
|
From: Kevin B K. <ke...@us...> - 2004-12-14 18:43:48
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5605 Modified Files: Tag: kennykb-numerics-branch ChangeLog Log Message: fixed zero-length array in BigInt struct; added conversion torture tests |
|
From: miguel s. <ms...@us...> - 2004-12-14 21:11:52
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8178 Modified Files: ChangeLog Log Message: changing the isProcCallFrame field of the CallFrame struct from a 0/1 field to flags. Should be perfectly backwards compatible. |
|
From: miguel s. <ms...@us...> - 2004-12-14 21:12:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8405 Modified Files: ChangeLog Log Message: bad date in Changelog |
|
From: miguel s. <ms...@us...> - 2004-12-15 20:44:43
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27545 Modified Files: ChangeLog Log Message: * generic/tclTest.c: Added two new functions to allocate memory from the execution stack (TclStackAlloc, TclStackFree). Added functions TclPushStackFrame and TclPopStackFrame that do the work of Tcl_PushCallFrame and Tcl_PopCallFrame, but using frames allocated in the execution stack - i.e., heap instead of C-stack. The core uses these two new functions exclusively; the old ones remain for backwards compat, as at least two popular extensions (itcl, xotcl) are known to use them. |
|
From: Donal K. F. <dk...@us...> - 2004-12-16 19:36:28
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17732 Modified Files: ChangeLog Log Message: Upgrade the capabilities of time limits by allowing them to fire in the midst of the processing of the event loop or during a blocking [after]. [Bug 1085023] |
|
From: miguel s. <ms...@us...> - 2004-12-20 18:27:24
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18340 Modified Files: ChangeLog Log Message: * generic/tclCompile.c: moved TclInitCompiledLocals to tclProc.c * generic/tclProc.c: new static InitCompiledLocals to allow for a single pass over the proc's arguments at proc load time (instead of two as previously). TclObjInterpProc() now allocates the compiledLocals on the tcl execution stack, using the new TclStackAlloc/Free functions. |
|
From: miguel s. <ms...@us...> - 2004-12-20 21:20:16
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27599 Modified Files: ChangeLog Log Message: fix for last commit; thanks dgp and tclguy for catch/classify/throw |
|
From: miguel s. <ms...@us...> - 2004-12-24 18:07:04
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17729 Modified Files: ChangeLog Log Message: Avoid sharing cmdName literals accross namespaces, and generalise usage of the TclRegisterNewLiteral macro [Patch 1090905] |
|
From: Kevin B K. <ke...@us...> - 2004-12-29 22:08:09
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9708 Modified Files: ChangeLog Log Message: bugs 1090413, 1092789 fixed |
|
From: Kevin B K. <ke...@us...> - 2004-12-29 22:46:45
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17401 Modified Files: Tag: kennykb-numerics-branch ChangeLog Log Message: merge from HEAD |
|
From: Jeffrey H. <ho...@us...> - 2004-12-30 01:49:55
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22380 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * win/tcl.m4, win/configure: update MSVC CFLAGS_OPT to -O2, remove -Gs (included in -O2) and -GD (outdated). Use "link -lib" instead of "lib" binary and remove -YX for MSVC7 portability. Add -fomit-frame-pointer for gcc OPT compiles. [Bug 1092952, 1091967] |
|
From: Jeffrey H. <ho...@us...> - 2004-12-30 02:01:16
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24685 Modified Files: ChangeLog Log Message: * win/tcl.m4, win/configure: update MSVC CFLAGS_OPT to -O2, remove -Gs (included in -O2) and -GD (outdated). Use "link -lib" instead of "lib" binary and remove -YX for MSVC7 portability. Add -fomit-frame-pointer for gcc OPT compiles. [Bug 1092952, 1091967] Align LIBS_GUI with Tk head needs. |
|
From: Don P. <dg...@us...> - 2005-01-04 17:05:36
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28625 Modified Files: ChangeLog Log Message: * tests/fCmd.test (fCmd-18.10): Added notNetworkFilesystem constraint. [Bug 456665] |
|
From: Donal K. F. <dk...@us...> - 2005-01-05 10:31:08
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9861 Modified Files: ChangeLog Log Message: Move #include of tclConfig.h to right place. |