|
From: miguel s. <ms...@us...> - 2006-10-17 15:39:28
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv8811 Modified Files: ChangeLog Log Message: * generic/tclInterp.c (ApplyObjCmd): fixed bad error in 2006-10-12 commit: interp released too early. Spotted by mistachkin. |
|
From: Pat T. <pat...@us...> - 2006-10-18 08:49:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv5965 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Ensure builds with VC6 without Platform SDK and Pickup MACHINE from environment to make life easier on Windows non-x86 platforms. |
|
From: Don P. <dg...@us...> - 2006-10-18 14:29:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv20142 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: advance 8.4.14 tag |
|
From: Don P. <dg...@us...> - 2006-10-18 17:42:52
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv2300 Modified Files: ChangeLog Log Message: advance tag for 8.5a5 |
|
From: Don P. <dg...@us...> - 2006-10-18 18:47:00
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28706 Modified Files: ChangeLog Log Message: * doc/Encoding.3: Missing doc updates (mostly Table of * doc/Ensemble.3: Contents) exposed by `make checkdoc` * doc/FileSystem.3: * doc/GetTime.3: * doc/PkgRequire.3: |
|
From: Reinhard M. <rm...@us...> - 2006-10-19 22:37:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4970 Modified Files: ChangeLog Log Message: * unix/configure.in: Added autodetection for OS-supplied timezone * unix/Makefile.in: files and configure switches to override the * unix/configure: detected default. |
|
From: Daniel A. S. <da...@us...> - 2006-10-20 03:58:20
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv22832 Modified Files: ChangeLog Log Message: * tools/tcltk-man2html.tcl: add support for alpha & beta versions to useversion glob pattern. [Bug 1579941] |
|
From: miguel s. <ms...@us...> - 2006-10-22 00:13:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv16463 Modified Files: ChangeLog Log Message: * generic/tcl.h: * generic/tclHash.c: Tcl_FindHashEntry() now calls Tcl_CreateHashEntry() with a newPtr set to NULL: this would have caused a segfault previously and eliminates duplicated code. A macro has been added to tcl.h (only used when TCL_PRESERVE_BINARY_COMPATABALITY is not set - ie, not by default). |
|
From: Don P. <dg...@us...> - 2006-10-23 13:16:49
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv16896 Modified Files: ChangeLog Log Message: Version of ChangeLog for 8.5a5 release |
|
From: Don P. <dg...@us...> - 2006-10-23 13:17:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17324 Modified Files: ChangeLog Log Message: back to development |
|
From: Don P. <dg...@us...> - 2006-10-23 20:26:16
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv6956 Modified Files: ChangeLog Log Message: * README: Bump version number to 8.5a6 * generic/tcl.h: * library init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure: |
|
From: miguel s. <ms...@us...> - 2006-10-23 21:36:57
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4051 Modified Files: ChangeLog Log Message: * generic/tcl.h: Modified the Tcl call stack so * generic/tclBasic.c: there is always a valid CallFrame, even * generic/tclCmdIL.c: at level 0 [Patch 1577278]. Most of the * generic/tclInt.h: changes involve removing tests for * generic/tclNamesp.c: iPtr->(var)framePtr==NULL. There is now a * generic/tclObj.c: CallFrame pushed at interp creation * generic/tclProc.c: with a pointer to it stored in * generic/tclTrace.c: iPtr->rootFramePtr. A second unused * generic/tclVar.c: field in Interp is hijacked to enable further functionality, currently unused (but with several FRQs depending on it). |
|
From: miguel s. <ms...@us...> - 2006-10-23 21:41:11
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv5796 Modified Files: ChangeLog Log Message: added warning to ChangeLog: ***POTENTIAL INCOMPATIBILITY*** Any user that includes tclInt.h and needs to determine if it is running at level 0 should change (iPtr->varFramePtr==NULL) to (iPtr->varFramePtr==iPtr->rootFramePtr). |
|
From: miguel s. <ms...@us...> - 2006-10-23 22:49:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1264 Modified Files: ChangeLog Log Message: * library/clock.tcl (format, scan): corrected wrong # args * tests/clock.test (3.1, 34.1): messages to make use of the new rewrite capabilities of [info level] * generic/tcl.h: Lets TEOV update the iPtr->objc/objv * generic/tclBasic.c: fields, except when the (new) flag bit * generic/tclInt.h: TCL_EVAL_NOREWRITE is present. This * generic/tclNamesp.c: causes [info level] to know and use * generic/tclProc.c: ensemble rewrites [Bug 1577492] * tests/namespace.test: ***POTENTIAL INCOMPATIBILITY*** The return value from [info level 0] on interp alias calls is changed: previously returned the target command (including curried values), now returns the source - what was actually called. |
|
From: miguel s. <ms...@us...> - 2006-10-23 23:04:21
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv7472 Modified Files: ChangeLog Log Message: * generic/tclBasic.c (TclEvalObjvInternal): removed redundant check for ensembles [Bug 1577628]. |
|
From: miguel s. <ms...@us...> - 2006-10-24 00:29:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10862 Modified Files: ChangeLog Log Message: * generic/tclProc.c (ApplyObjCmd): fix wrong#args for apply by using the ensemble rewrite engine, [Bug 1574835]. * generic/tclInterp.c (AliasObjCmd): previous commit missed usage of TCL_EVAL_NOREWRITE for aliases. |
|
From: miguel s. <ms...@us...> - 2006-10-24 22:31:15
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19073 Modified Files: ChangeLog Log Message: * generic/tclProc.c (ObjInterpProcEx): disable itcl hacks for calls from ApplyObjCmd (islambda==1), as they mess apply's error messages [Bug 1583266] |
|
From: miguel s. <ms...@us...> - 2006-10-24 23:13:10
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv7790 Modified Files: ChangeLog Log Message: * tests/info.test (info-9.11-12): tests for [Bug 1577492] * tests/apply.test (apply-4.3-5): tests for [Bug 1574835] |
|
From: miguel s. <ms...@us...> - 2006-10-26 17:23:58
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv15636 Modified Files: ChangeLog Log Message: doh, missing ChangeLog entry |
|
From: miguel s. <ms...@us...> - 2006-10-27 00:39:59
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12699 Modified Files: ChangeLog Log Message: * generic/tclProc.c (SetLambdaFromAny): minor change, eliminate redundant call to Tcl_GetString (thanks aku). |
|
From: Donal K. F. <dk...@us...> - 2006-10-27 12:33:26
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19735 Modified Files: ChangeLog Log Message: Fixed a spot where CONSTness had been forgotten. |
|
From: Donal K. F. <dk...@us...> - 2006-10-27 12:44:16
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv24269 Modified Files: ChangeLog Log Message: Add field to CallFrame for holding object call frame data. |
|
From: Donal K. F. <dk...@us...> - 2006-10-27 12:53:44
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28169 Modified Files: ChangeLog Log Message: Allow extensions that use the internal stubs to set a namespace path. |
|
From: Donal K. F. <dk...@us...> - 2006-10-27 13:20:33
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv7190 Modified Files: ChangeLog Log Message: Cleaning up of various bits in tclVar.c to make code clearer to understand. |
|
From: miguel s. <ms...@us...> - 2006-10-28 21:56:37
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv512 Modified Files: ChangeLog Log Message: Improved Changelog entry for commit dated 2006-10-23 |