|
From: Donal K. F. <dk...@us...> - 2005-05-14 21:37:33
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15337 Modified Files: ChangeLog Log Message: whitespace fix |
|
From: Kevin B K. <ke...@us...> - 2005-05-16 15:35:48
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20633 Modified Files: ChangeLog Log Message: restore MSVC buildability of tclWin32Dll.c |
|
From: Don P. <dg...@us...> - 2005-05-16 19:23:17
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21433 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
|
From: Don P. <dg...@us...> - 2005-05-17 21:29:24
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27370 Modified Files: ChangeLog Log Message: * generic/tclObj.c (TclInitObjSubsystem): Removed the * tests/listObj.test: registration of the Tcl_ObjType's "list", * tests/obj.test: "procbody", "index", "ensembleCommand", "localVarName", and "levelReference". The only reason to register a Tcl_ObjType is to have it returned by Tcl_GetObjType, and the only reason for that is to retrieve a (Tcl_ObjType *) to pass to Tcl_ConvertToType(). None of the types above can support a Tcl_ConvertToType() call; they panic. Better not to offer something than to lead users into a panic. |
|
From: Don P. <dg...@us...> - 2005-05-18 15:44:03
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18813 Modified Files: ChangeLog Log Message: * generic/tclInt.h: Revision to the "boolean" Tcl_ObjType, so * generic/tclObj.c: that only string values like "yes" and "false" * tests/obj.test: are kept as the "boolean" Tcl_ObjType. The string values "0" and "1" are kept as "int" Tcl_ObjType, which also produce quick calls to Tcl_GetBooleanFromObj(). Since this internal change means a Tcl_ConvertToType to a "boolean" Tcl_ObjType might not produce a Tcl_Obj of type "boolean", the registration of the "boolean" type is also removed. ***POTENTIAL INCOMPATIBILITY*** For callers of Tcl_GetObjType on the type name "boolean". |
|
From: Don P. <dg...@us...> - 2005-05-18 16:44:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32004 Modified Files: ChangeLog Log Message: * doc/BoolObj.3: Rewrite of documentation dropping many details about the internals of Tcl_Objs. Shorter documentation focuses on the function and use of the routines. |
|
From: Don P. <dg...@us...> - 2005-05-18 20:55:09
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32231 Modified Files: ChangeLog Log Message: * generic/tclBasic.c (Tcl_ExprBoolean): Rewrite as wrapper around Tcl_ExprBooleanObj. * generic/tclCmdMZ.c ([string is boolean/true/false]): Rewrite dropping string-based Tcl_GetBoolean call, so that internal reps are kept for subsequent quick boolean operations. * generic/tclExecute.c: Dropped most special handling of the "boolean" Tcl_ObjType, since that type should now be rarely encountered. * doc/BoolObj.3: Rewrite of documentation dropping many details about the internals of Tcl_Objs. Shorter documentation focuses on the function and use of the routines. |
|
From: Daniel A. S. <da...@us...> - 2005-05-19 13:27:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21028 Modified Files: ChangeLog Log Message: * macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed crashing CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran): CFRunLoopAddSource doesn't CFRetain, so can only CFRelease the runLoopSource in Tcl_FinalizeNotifier. |
|
From: Daniel A. S. <da...@us...> - 2005-05-19 13:28:38
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21227 Modified Files: ChangeLog Log Message: * macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed crashing CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran): CFRunLoopAddSource doesn't CFRetain, so can only CFRelease the runLoopSource in Tcl_FinalizeNotifier. |
|
From: Daniel A. S. <da...@us...> - 2005-05-19 13:28:45
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21101 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * macosx/tclMacOSXNotify.c (Tcl_InitNotifier): fixed crashing CFRelease of runLoopSource in Tcl_InitNotifier (reported by Zoran): CFRunLoopAddSource doesn't CFRetain, so can only CFRelease the runLoopSource in Tcl_FinalizeNotifier. |
|
From: Donal K. F. <dk...@us...> - 2005-05-19 15:18:14
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10649 Modified Files: ChangeLog Log Message: Scratch one bizarre while loop... :^) |
|
From: Don P. <dg...@us...> - 2005-05-20 15:28:29
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24159 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclParseExpr.c: Corrected parser to recognize all boolean literals accepted by Tcl_GetBoolean, including prefixes like "y" and "f", and to allow "eq" and "ne" as function names in the proper context. [Bug 1201589]. |
|
From: Don P. <dg...@us...> - 2005-05-20 15:29:44
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24371 Modified Files: ChangeLog Log Message: * generic/tclParseExpr.c: Corrected parser to recognize all boolean literals accepted by Tcl_GetBoolean, including prefixes like "y" and "f", and to allow "eq" and "ne" as function names in the proper context. [Bug 1201589]. |
|
From: Zoran V. <vas...@us...> - 2005-05-20 17:19:31
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14523 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Removed unreferenced stack variable |
|
From: Kevin B K. <ke...@us...> - 2005-05-21 15:10:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1134 Modified Files: Tag: kennykb-numerics-branch ChangeLog Log Message: Resynchronized with HEAD |
|
From: Daniel A. S. <da...@us...> - 2005-05-23 17:41:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5108 Modified Files: ChangeLog Log Message: * doc/expr.n: * doc/string.n: fixed roff syntax complaints from 'make html'. |
|
From: Daniel A. S. <da...@us...> - 2005-05-23 20:21:00
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9952 Modified Files: ChangeLog Log Message: * macosx/Makefile: * macosx/README: * macosx/Tcl-Info.plist.in (new file): * unix/Makefile.in: * unix/configure.in: * unix/tcl.m4: * unix/tclUnixInit.c: moved all Darwin framework build support from macosx/Makefile into the standard unix configure/make buildsystem, the macosx/Makefile is no longer required to build Tcl.framework (but its functionality is still available for backwards compatibility). * unix/configure: autoconf-2.59 |
|
From: Daniel A. S. <da...@us...> - 2005-05-24 04:20:15
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10857 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * macosx/Makefile: * macosx/README: * macosx/Tcl-Info.plist.in (new file): * unix/Makefile.in: * unix/configure.in: * unix/tcl.m4: * unix/tclUnixInit.c: moved all Darwin framework build support from macosx/Makefile into the standard unix configure/make buildsystem, the macosx/Makefile is no longer required to build Tcl.framework (but its functionality is still available for backwards compatibility). * unix/configure: autoconf-2.13 |
|
From: Daniel A. S. <da...@us...> - 2005-05-24 04:44:39
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14727 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * tests/env.test: added DYLD_FRAMEWORK_PATH to the list of env vars that need to be handled specially. |
|
From: Daniel A. S. <da...@us...> - 2005-05-24 04:44:15
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14645 Modified Files: ChangeLog Log Message: * tests/env.test: added DYLD_FRAMEWORK_PATH to the list of env vars that need to be handled specially. |
|
From: Don P. <dg...@us...> - 2005-05-24 19:13:53
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28210 Modified Files: ChangeLog Log Message: * library/init.tcl: Updated [unknown] to be sure the [return] * tests/init.test: options from an auto-loaded command are seen correctly by the caller. |
|
From: Don P. <dg...@us...> - 2005-05-25 15:01:30
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28553 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
|
From: Don P. <dg...@us...> - 2005-05-25 16:13:23
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11065 Modified Files: ChangeLog Log Message: TIP#182 IMPLEMENTATION [Patch 1165062] * doc/mathfunc.n: New built-in math function bool(). * generic/tclBasic.c: * tests/expr.test: * tests/info.test: |
|
From: Jeffrey H. <ho...@us...> - 2005-05-25 18:49:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11271 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * unix/configure, unix/configure.in: ensure false Tcl.framework is only created with --enable-framework |
|
From: Jeffrey H. <ho...@us...> - 2005-05-25 19:27:45
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19328 Modified Files: ChangeLog Log Message: * generic/tclCmdMZ.c (Tcl_TimeObjCmd): add necessary cast |