From: Kevin B K. <ke...@us...> - 2003-03-03 18:01:49
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv29452 Modified Files: ChangeLog Log Message: Corrected a Makefile.vc bug introduced by the change of DBGX from d to g in rules.vc. |
From: Daniel A. S. <da...@us...> - 2003-03-03 20:22:43
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv414 Modified Files: ChangeLog Log Message: Mac OS Classic specific fixes: * generic/tclIOUtil.c (TclNewFSPathObj): on TCL_PLATFORM_MAC, skip potential directory separator at the beginning of addStrRep. * mac/tclMacChan.c (OpenFileChannel, CommonWatch): followup fixes to cut and splice implementation for file channels. * mac/tclMacFile.c (TclpUtime): pass native path to utime(). * mac/tclMacFile.c (TclpObjLink): correctly implemented creation of alias files via new static proc CreateAliasFile(). * mac/tclMacPort.h: define S_ISLNK macro to fix stat'ing of links. * mac/tclMacUtil.c (FSpLocationFromPathAlias): fix to enable stat'ing of broken links. |
From: Don P. <dg...@us...> - 2003-03-04 23:50:15
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv25176 Modified Files: ChangeLog Log Message: typos |
From: Donal K. F. <dk...@us...> - 2003-03-05 22:31:24
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv24727 Modified Files: ChangeLog Log Message: The [switch] command is now bytecode compiled, at least in the most common case. There's room for improvement in the future, of course. [Patch #644819] Also adds another macro to help with jump offset fixups. |
From: David G. <dav...@us...> - 2003-03-06 03:06:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv22167 Modified Files: ChangeLog Log Message: no message |
From: Mo D. <md...@us...> - 2003-03-06 09:16:21
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv8070 Modified Files: ChangeLog Log Message: * generic/tclIO.c (Tcl_SetChannelOption): Invoke the Tcl_SetChannelBufferSize method as a result of changing the -buffersize option to fconfigure. The previous implementation used some inlined code that reset the buffer size to the default size instead of ignoring the request as implemented in Tcl_SetChannelBufferSize. * tests/io.test: Update test case so that it actually checks the implementation of Tcl_SetChannelBufferSize. |
From: Mo D. <md...@us...> - 2003-03-06 09:47:50
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv20043 Modified Files: ChangeLog Log Message: * generic/tclIO.c (WriteBytes, WriteChars, Tcl_GetsObj, ReadBytes): Rework calls to TranslateOutputEOL to make it clear that a boolean value is being returned. Add some comments in an effort to make the code more clear. This patch makes no functional changes. |
From: Mo D. <md...@us...> - 2003-03-06 09:58:45
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv25046 Modified Files: ChangeLog Log Message: * generic/tclIO.c (Tcl_GetsObj): Check that the eol pointer has not gone past the end of the string when in auto translation mode and the INPUT_SAW_CR flag is set. The previous code worked because the end of string value \0 was being compared to \n, this patch just skips that pointless check. |
From: Mo D. <md...@us...> - 2003-03-06 10:10:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv29261 Modified Files: ChangeLog Log Message: * generic/tclIO.c (Tcl_Flush): Compare the nextAdded member of the ChannelBuffer to the nextRemoved member to determine if any output has been buffered. The previous check against the value 0 seems to have just been a coding error. See other methods like Tcl_OutputBuffered for examples where nextAdded is compared to nextRemoved to find the number of bytes buffered. |
From: Mo D. <md...@us...> - 2003-03-06 20:14:51
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv10593 Modified Files: ChangeLog Log Message: * generic/tclIO.c (Tcl_Seek, Tcl_OutputBuffered): If there is data buffered in the statePtr->curOutPtr member then set the BUFFER_READY flag in Tcl_Seek. This is needed so that the next call to FlushChannel will write any buffered bytes before doing the seek. The existing code would set the BUFFER_READY flag inside the Tcl_OutputBuffered function. This was a programming error made when Tcl_OutputBuffered was originally created in CVS revision 1.35. The setting of the BUFFER_READY flag should not have been included in the Tcl_OutputBuffered function. * generic/tclTest.c (TestChannelCmd): Use the Tcl_InputBuffered and Tcl_OutputBuffered util methods to query the amount of buffered input and output. |
From: Kevin B K. <ke...@us...> - 2003-03-06 23:22:24
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv30789 Modified Files: ChangeLog Log Message: Replaced a non-portable 'bzero' with a portable 'memset'. [Bug 698442]. |
From: Don P. <dg...@us...> - 2003-03-06 23:24:19
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv1361 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/TclUtf.c (Tcl_UniCharNcasecmp): Corrected failure to * tests/utf.test (utf-25.*): properly compare Unicode strings of different case in a case insensitive manner. [Bug 699042] |
From: Don P. <dg...@us...> - 2003-03-06 23:27:14
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv2516 Modified Files: ChangeLog Log Message: * generic/TclUtf.c (Tcl_UniCharNcasecmp): Corrected failure to * tests/utf.test (utf-25.*): properly compare Unicode strings of different case in a case insensitive manner. [Bug 699042] |
From: Mo D. <md...@us...> - 2003-03-07 01:46:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv17237 Modified Files: ChangeLog Log Message: * tests/io.test: Define an openpipe constraint and add it to the constraint list of any test that creates a pipe using the open command. This is only useful to Jacl which does not support pipes. |
From: Mo D. <md...@us...> - 2003-03-07 02:15:44
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv28567 Modified Files: ChangeLog Log Message: * tests/io.test: Define a fileevent constraint and add it to the constraint list of any test that depends on the fileevent command. This is only useful to Jacl which does not support fileevent. |
From: Mo D. <md...@us...> - 2003-03-07 02:23:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv31704 Modified Files: ChangeLog Log Message: * tests/io.test: Doh! Undo accidental commenting out of a couple of tests. |
From: Donal K. F. <dk...@us...> - 2003-03-07 11:38:30
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv18649 Modified Files: ChangeLog Log Message: * generic/tclCmdAH.c (Tcl_FileObjCmd): Fix the setting of a file's mtime and atime on 64-bit platforms. [Bug #698146] |
From: Mo D. <md...@us...> - 2003-03-07 21:40:28
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv29864 Modified Files: ChangeLog Log Message: * tests/encoding.test: Name temp files *.tcltestout instead of *.out so that when they are removed later, we don't accidently toast any files named *.out that the user has created in the build directory. |
From: Mo D. <md...@us...> - 2003-03-07 22:03:40
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv8976 Modified Files: ChangeLog Log Message: * tests/io.test: * tests/ioCmd.test: Define a fcopy constraint and add it to the constraint list of any test that depends on the fcopy command. This is only useful to Jacl which does not support fcopy. |
From: Don P. <dg...@us...> - 2003-03-08 21:42:48
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv4114 Modified Files: ChangeLog Log Message: * doc/tcltest.n: Added missing "-body" to example. Thanks to Helmut Giese. [Bug 700011] |
From: Don P. <dg...@us...> - 2003-03-08 21:43:50
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv7187 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * doc/tcltest.n: Added missing "-body" to example. Thanks to Helmut Giese. [Bug 700011] |
From: Kevin B K. <ke...@us...> - 2003-03-09 14:51:49
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv17791 Modified Files: ChangeLog Log Message: Removed an unused local variable that caused compilation problems on some platforms. |
From: Kevin B K. <ke...@us...> - 2003-03-11 21:59:53
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv31470 Modified Files: ChangeLog Log Message: Added two missing uses of $(DBGX) so that tclpip8x.dll loads without panicking on Win9x. |
From: Kevin B K. <ke...@us...> - 2003-03-11 22:16:03
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv5751 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Added two missing uses of $(DBGX) so that tclpip8x.dll loads without panicking on Win9x. |
From: Don P. <dg...@us...> - 2003-03-12 17:51:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv23159 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclInterp.c (Tcl_InterpObjCmd): Corrected option parsing beyond objc for [interp create --]. Thanks to Marco Maggi. [Bug 702383] |