From: Vince D. <vin...@us...> - 2003-04-16 08:16:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv27177 Modified Files: ChangeLog Log Message: removed undesired 'static' |
From: Donal K. F. <dk...@us...> - 2003-04-16 22:26:17
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv27674 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Math funcs might have to deal with wide ints; document this. [Bug 709720] |
From: Donal K. F. <dk...@us...> - 2003-04-16 22:29:21
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv29174 Modified Files: ChangeLog Log Message: Math funcs might have to deal with wide ints; document this. [Bug 709720] |
From: Donal K. F. <dk...@us...> - 2003-04-16 23:06:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv9918 Modified Files: ChangeLog Log Message: If you deal with network sockets, you should care about encodings. Tcl cannot guess it for you. Updated socket docs to remind people about this. [Bug 630621] |
From: Donal K. F. <dk...@us...> - 2003-04-16 23:08:37
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv11828 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: If you deal with network sockets, you should care about encodings. Tcl cannot guess it for you. Updated socket docs to remind people about this. [Bug 630621] |
From: Don P. <dg...@us...> - 2003-04-16 23:31:42
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv21302 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tcl.h Made changes so that the "wideInt" Tcl_ObjType * generic/tclObj.c is defined on all platforms, even those where * generic/tclPort.h TCL_WIDE_INT_IS_LONG is defined. Also made the Tcl_Value struct have a wideValue field on all platforms. This is a ***POTENTIAL INCOMPATIBILITY*** for TCL_WIDE_INT_IS_LONG platforms because that struct changes size. This is the same TIP 72 incompatibility that was seen on other platforms at the 8.4.0 release, when this change should have happened as well. [Bug 713562] * generic/tclInt.h: New internal macros TclGetWide() and TclGetLongFromWide() to deal with both forms of the "wideInt" Tcl_ObjType, so that conditional TCL_WIDE_INT_IS_LONG code is confined to the header file. * generic/tclCmdAH.c: Replaced most coding that was conditional * generic/tclCmdIL.c: on TCL_WIDE_INT_IS_LONG with code that * generic/tclExecute.c: works across platforms, sometimes using * generic/tclTest.c: the new macros above to do it. * generic/tclUtil.c: * generic/tclVar.c: |
From: Don P. <dg...@us...> - 2003-04-16 23:33:44
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv21969 Modified Files: ChangeLog Log Message: * generic/tcl.h Made changes so that the "wideInt" Tcl_ObjType * generic/tclObj.c is defined on all platforms, even those where * generic/tclPort.h TCL_WIDE_INT_IS_LONG is defined. Also made the Tcl_Value struct have a wideValue field on all platforms. This is a ***POTENTIAL INCOMPATIBILITY*** for TCL_WIDE_INT_IS_LONG platforms because that struct changes size. This is the same TIP 72 incompatibility that was seen on other platforms at the 8.4.0 release, when this change should have happened as well. [Bug 713562] * generic/tclInt.h: New internal macros TclGetWide() and TclGetLongFromWide() to deal with both forms of the "wideInt" Tcl_ObjType, so that conditional TCL_WIDE_INT_IS_LONG code is confined to the header file. * generic/tclCmdAH.c: Replaced most coding that was conditional * generic/tclCmdIL.c: on TCL_WIDE_INT_IS_LONG with code that * generic/tclExecute.c: works across platforms, sometimes using * generic/tclTest.c: the new macros above to do it. * generic/tclUtil.c: * generic/tclVar.c: |
From: Donal K. F. <dk...@us...> - 2003-04-18 00:28:15
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv3414 Modified Files: ChangeLog Log Message: Moved serial line options to their creator, open.n, from the generic page fconfigure.n which was never an obvious spot for them. [Bug 679010] |
From: Donal K. F. <dk...@us...> - 2003-04-18 00:32:36
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv5298 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Moved serial line options to their creator, open.n, from the generic page fconfigure.n which was never an obvious spot for them. [Bug 679010] |
From: Jeffrey H. <ho...@us...> - 2003-04-18 20:06:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv8287 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclExecute.c (ExprCallMathFunc): remove incorrect extraneous cast from Tcl_WideAsDouble. |
From: Jeffrey H. <ho...@us...> - 2003-04-18 20:17:43
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv13741 Modified Files: ChangeLog Log Message: * win/tclWinInt.h (VER_PLATFORM_WIN32_CE): conditionally define. * win/tclWinInit.c: recognize Windows CE as a Win platform. This just recognizes CE - full support will come later. |
From: Don P. <dg...@us...> - 2003-04-21 20:41:58
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv9823 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * library/tcltest/tcltest.tcl: When the return code of a test does not meet expectations, report that as the reason for test failure, and do not attempt to check the test result for correctness. [Bug 725253] |
From: Don P. <dg...@us...> - 2003-04-21 20:42:26
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv10457 Modified Files: ChangeLog Log Message: * library/tcltest/tcltest.tcl: When the return code of a test does not meet expectations, report that as the reason for test failure, and do not attempt to check the test result for correctness. [Bug 725253] |
From: Andreas K. <and...@us...> - 2003-04-22 23:20:42
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv3744 Modified Files: ChangeLog Log Message: * The changes below fix SF bugs [593810], and [718045]. * generic/tclIO.c (Tcl_CutChannel, Tcl_SpliceChannel): Invoke TclpCutSockChannel and TclpSpliceSockChannel. * generic/tclInt.h: Declare TclpCutSockChannel and TclpSpliceSockChannel. * unix/tclUnixSock.c (TclpCutSockChannel, TclpSpliceSockChannel): Dummy functions, on unix the sockets are _not_ handled specially. * mac/tclMacSock.c (TclpCutSockChannel, TclpSpliceSockChannel): * win/tclWinSock.c (TclpCutSockChannel, TclpSpliceSockChannel): New functions to handle socket specific cut/splice operations: auto-initi of socket system for thread on splice, management of the module internal per-thread list of sockets, management of association of sockets with HWNDs for event notification. * win/tclWinSock.c (NewSocketInfo): Extended initialization assignments to cover all items of the structure. During debugging of the new code mentioned above I found that two fileds could contain bogus data. * win/tclWinFile.c: Added #undef HAVE_NO_FINDEX_ENUMS before definition because when compiling in debug mode the compiler complains about a redefinition, and this warning is also treated as an error. |
From: Vince D. <vin...@us...> - 2003-04-25 18:28:43
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv12961 Modified Files: ChangeLog Log Message: fix to glob and filenames with square brackets |
From: Andreas K. <and...@us...> - 2003-04-25 20:02:40
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv20761 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * win/tclWinThrd.c: Applied SF patch #727271. This patch changes the code to catch any errors returned by the windows functions handling TLS ASAP instead of waiting to get some mysterious crash later on due to bogus pointers. Patch provided by Joe Mistachkin. This is a stop-gap measure to deal with the low number of ?TLS slots provided by some of the variants of Windows (60-80). |
From: Andreas K. <and...@us...> - 2003-04-25 20:03:27
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv21056 Modified Files: ChangeLog Log Message: * win/tclWinThrd.c: Applied SF patch #727271. This patch changes the code to catch any errors returned by the windows functions handling TLS ASAP instead of waiting to get some mysterious crash later on due to bogus pointers. Patch provided by Joe Mistachkin. This is a stop-gap measure to deal with the low number of ?TLS slots provided by some of the variants of Windows (60-80). |
From: Don P. <dg...@us...> - 2003-04-25 21:21:27
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv19157 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclBasic.c: Tcl_EvalObjv() failed to honor the TCL_EVAL_GLOBAL flag when resolving command names. Tcl_EvalEx passed a string rep including leading whitespace and comments to TclEvalObjvInternal(). |
From: Don P. <dg...@us...> - 2003-04-25 21:23:21
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv19904 Modified Files: ChangeLog Log Message: * generic/tclBasic.c: Tcl_EvalObjv() failed to honor the TCL_EVAL_GLOBAL flag when resolving command names. Tcl_EvalEx passed a string rep including leading whitespace and comments to TclEvalObjvInternal(). |
From: Donal K. F. <dk...@us...> - 2003-04-28 10:05:28
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv17681 Modified Files: ChangeLog Log Message: Default mode of operation of [switch] is exact matching. [Bug 727563] |
From: Donal K. F. <dk...@us...> - 2003-04-28 12:34:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv13066 Modified Files: ChangeLog Log Message: Made [incr] able to accept and work with wide increments [Bug 728838] |
From: Vince D. <vin...@us...> - 2003-04-29 11:45:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv14925 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: glob and square brackets fix |
From: Donal K. F. <dk...@us...> - 2003-05-05 16:48:55
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv13549 Modified Files: ChangeLog Log Message: Corrected error message for grammar and spelling. |
From: Donal K. F. <dk...@us...> - 2003-05-05 16:52:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv15072 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Corrected error message for grammar and spelling. |
From: Don P. <dg...@us...> - 2003-05-05 16:59:51
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv18182 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * library/tcltest/tcltest.tcl: The -returnCodes option to [test] failed to recognize the symbolic name "ok" for return code 0. |