|
From: Zoran V. <vas...@us...> - 2005-04-16 08:05:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1585 Modified Files: ChangeLog Log Message: See file |
|
From: miguel s. <ms...@us...> - 2005-04-16 19:17:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1274 Modified Files: ChangeLog Log Message: * generic/Var.c (Tcl_ArrayObjCmd - ARRAY_NAMES): fix Tcl_Obj leak [Bug 1084111] |
|
From: miguel s. <ms...@us...> - 2005-04-16 19:21:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2742 Modified Files: Tag: msofer-wcodes-branch ChangeLog Log Message: *** FROM HEAD *** * generic/Var.c (Tcl_ArrayObjCmd - ARRAY_NAMES): fix Tcl_Obj leak [Bug 1084111] |
|
From: Kevin B K. <ke...@us...> - 2005-04-19 15:11:14
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12704 Modified Files: ChangeLog Log Message: fixed Bug 1185933 |
|
From: David G. <dav...@us...> - 2005-04-19 16:31:39
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17941 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: no message |
|
From: Don P. <dg...@us...> - 2005-04-19 16:33:00
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18588 Modified Files: ChangeLog Log Message: * generic/tclBasic.c: Added unsupported command * generic/tclCmdAH.c: [::tcl::unsupported::EncodingDirs] to permit * generic/tclInt.h: query/set of the encoding search path at * generic/tclInterp.c: the script level. Updated init.tcl to make * library/init.tcl: use of the new command. Also updated several coding practices in init.tcl ("eq" for [string equal], etc.) |
|
From: Jeffrey H. <ho...@us...> - 2005-04-20 00:15:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7013 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * tests/winPipe.test (winpipe-6.2): remove -blocking 1 as this one can truly block. |
|
From: Kevin B K. <ke...@us...> - 2005-04-20 15:13:46
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19123 Modified Files: ChangeLog Log Message: silenced a compiler warning |
|
From: Don P. <dg...@us...> - 2005-04-20 16:04:26
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16266 Modified Files: ChangeLog Log Message: * generic/tclGet.c (Tcl_GetInt): Corrected error that did not * generic/tclObj.c (Tcl_GetIntFromObj): permit 0x80000000 to be recognized as an integer on TCL_WIDE_INT_IS_LONG systems [Bug 1090869]. |
|
From: Don P. <dg...@us...> - 2005-04-20 16:06:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17422 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclGet.c (Tcl_GetInt): Corrected error that did not * generic/tclObj.c (Tcl_GetIntFromObj): permit 0x80000000 to be recognized as an integer on TCL_WIDE_INT_IS_LONG systems [Bug 1090869]. |
|
From: Kevin B K. <ke...@us...> - 2005-04-20 19:47:22
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12745 Modified Files: Tag: kennykb-numerics-branch ChangeLog Log Message: TIP 232 documentation |
|
From: Don P. <dg...@us...> - 2005-04-21 14:24:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5651 Modified Files: ChangeLog Log Message: * doc/GetInt.3: Convert argument "string" to "str" to agree with code. Also clarified a few details on int and double formats. * generic/tclGet.c: Radical code simplification. Converted most Tcl_GetFoo() routines into wrappers around Tcl_GetFooFromObj(). Reduces code duplication, and the resulting potential for inconsistency. |
|
From: Don P. <dg...@us...> - 2005-04-21 15:23:48
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5140 Modified Files: ChangeLog Log Message: * generic/tclObj.c: Re-ordered error detection code so all values with trailing garbage receive a "not an integer" message instead of an "integer too large" message. Removed inactive code meant to deal with strtoul* routines that fail to parse leading signs. All of them do, and if any are detected that do not, the correct fix is replacement with compat/strtoul*.c, not a lot of special care by the callers. |
|
From: Don P. <dg...@us...> - 2005-04-21 15:49:57
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18221 Modified Files: ChangeLog Log Message: Tcl_GetDoubleFromObj now avoids shimmering away a "wideInt" intrep. |
|
From: Don P. <dg...@us...> - 2005-04-21 20:24:17
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12182 Modified Files: ChangeLog Log Message: * generic/tclGet.c: Radical code simplification. Converted Tcl_GetFoo() routines into wrappers around Tcl_GetFooFromObj(). Reduces code duplication, and the resulting potential for inconsistency. * generic/tclObj.c: Several changes: - Fixed Tcl_GetBooleanFromObj to agree with its documentation and with Tcl_GetBoolean, accepting only "0" and "1" and not other numeric strings. [Bug 1187123] - Added new private routine TclGetTruthValueFromObj to perform the more permissive conversion of numeric values to boolean that is needed by the [expr] machinery. * generic/tclInt.h (TclGetTruthValueFromObj): New routine. * generic/tclExecute.c: Updated callers to call new routine. * tests/obj.test: Corrected bad tests that actually expected values like "47" and "0xac" to be accepted as booleans. |
|
From: Don P. <dg...@us...> - 2005-04-21 21:24:10
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16624 Modified Files: ChangeLog Log Message: * generic/tclBasic.c: Updated callers to call new routine. * generic/tclCompCmds.c: Updated callers to call new routine. |
|
From: Don P. <dg...@us...> - 2005-04-21 21:29:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19420 Modified Files: ChangeLog Log Message: * generic/tclDictObj.c: Updated callers to call new routine. |
|
From: Don P. <dg...@us...> - 2005-04-21 22:42:11
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27726 Modified Files: ChangeLog Log Message: * generic/tclLiteral.c: Disabled the code that forces some literals into the "int" Tcl_ObjType during registration. We can re-enable it if this change causes trouble, but it seems more sensible to let Tcl's "on-demand" shimmering rule, and not try to pre-guess things. |
|
From: Daniel A. S. <da...@us...> - 2005-04-21 23:42:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26738 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * tests/unixInit.test (7.1): fixed failure when running tests with -tmpdir arg not set to working dir. |
|
From: Don P. <dg...@us...> - 2005-04-22 15:47:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19726 Modified Files: ChangeLog Log Message: The 2005-04-21 changes to Tcl_GetBooleanFromObj were done to bring it into agreement with its docs. Further investigation reveals it was the docs that were incorrect. * doc/BoolObj.3: Corrections to the documentation of Tcl_GetBooleanFromObj to bring it into agreement with what this public interface has always done, including noting the difference in function between Tcl_GetBooleanFromObj and Tcl_GetBoolean. * generic/tclGet.c: Revised Tcl_GetBoolean to no longer be a wrapper around Tcl_GetBooleanFromObj (different function!). * generic/tclObj.c: Removed TclGetTruthValueFromObj routine that was added yesterday. Revisions so that only Tcl_GetBoolean-approved values get the "boolean" Tcl_ObjType. This retains the fix for [Bug 1187123]. * generic/tclInt.h: Revert most recent change. * generic/tclBasic.c: * generic/tclCompCmds.c: * generic/tclDictObj.c: * generic/tclExecute.c: * tests/obj.test: |
|
From: Don P. <dg...@us...> - 2005-04-22 16:18:37
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3818 Modified Files: ChangeLog Log Message: * tests/string.test: Test string-23.0 for Bug 1187123. |
|
From: Don P. <dg...@us...> - 2005-04-22 16:30:17
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8520 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclCmdMZ.c: Corrected intrep-dependence of * tests/string.test: [string is boolean] [Bug 1187123] |
|
From: Don P. <dg...@us...> - 2005-04-25 02:08:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6716 Modified Files: ChangeLog Log Message: silence compiler warnings |
|
From: miguel s. <ms...@us...> - 2005-04-25 10:02:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21389 Modified Files: ChangeLog Log Message: * generic/tclExecute.c: fix for [Bug 1189274]. |
|
From: Don P. <dg...@us...> - 2005-04-25 17:08:00
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10672 Modified Files: ChangeLog Log Message: * library/init.tcl: Use "ni" and "in" operators. |