summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use zero-delays instead of finite ones when posting fileevents, because (1) ↵bug_3525907ferrieux2012-05-222-16/+2
| | | | they should be zero in the first place (see UpdateInterest) and (2) ever-reposting cases will be detected with greater ease.
* Add test showing both loss of bytes and empty-fileevent frenzy.ferrieux2012-05-201-0/+18
|
* Brought bugfix branch uptodate with head development.andreask2012-05-1719-288/+546
|\
| * Cancel the timeout timers! If this isn't done, lingering timers from dgp2012-05-171-0/+16
| | | | | | | | early tests can trigger false timeouts of later tests (since they are all using a common variable name).
| * * generic/tclCmdMZ.c (Tcl_SwitchObjCmd): [Bug 3106532]: Correcteddkf2012-05-173-8/+31
| |\ | | | | | | | | | | | | | | | | | | | | | | | | resulting indexes from -indexvar option to be usable with [string range]; this was always the intention (and is consistent with [regexp -indices] too). ***POTENTIAL INCOMPATIBILITY*** Uses of [switch -regexp -indexvar] that previously compensated for the wrong offsets (by subtracting 1 from the end indices) now do not need to do so as the value is correct.
| | * * generic/tclCmdMZ.c (Tcl_SwitchObjCmd): [Bug 3106532]: Correcteddkf2012-05-173-8/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | resulting indexes from -indexvar option to be usable with [string range]; this was always the intention (and is consistent with [regexp -indices] too). ***POTENTIAL INCOMPATIBILITY*** Uses of [switch -regexp -indexvar] that previously compensated for the wrong offsets (by subtracting 1 from the end indices) now do not need to do so as the value is correct.
| * | [Bug 3527618]: Stabilize tests that use [info frame 0]dkf2012-05-171-4/+4
| | |
| * | [Bug 2964715]: fixes to globbing in safe interpretersdkf2012-05-173-25/+181
| |\ \ | | |/
| | * [Bug 2964715]: fixes to globbing in safe interpretersdkf2012-05-173-18/+212
| | |
| * | minor: ChangeLog formatting fixesdkf2012-05-171-47/+53
| | |
| * | [Bug 3525462]: Document what relational operators really do with string args.dkf2012-05-162-3/+9
| |\ \ | | |/
| | * [Bug 3525462]: Document what relational operators really do with string args.dkf2012-05-162-3/+9
| | |\
| | | * [Bug 3525462]: Document what relational operators really do with string args.dkf2012-05-162-3/+9
| | | |
| * | | [Bug 3445787]: Improve the compatibility of safe interpreters' version ofdkf2012-05-164-49/+80
| | | | | | | | | | | | 'file' with that of unsafe interpreters.
| * | | revert part of [8f9c16848b] move Tcl_MacOSXOpenBundleResources and ↵jan.nijtmans2012-05-154-38/+8
| |\ \ \ | | |/ / | | | | | | | | Tcl_MacOSXOpenVersionedBundleResources from the UNIX stub table back to its own osx stub table, instead let cygwin make use of the win32 stub table
| | * | Revert part of [5caa06383d] move Tcl_MacOSXOpenBundleResources and ↵jan.nijtmans2012-05-154-48/+8
| | |\ \ | | | |/ | | | | | | | | Tcl_MacOSXOpenVersionedBundleResources from the UNIX stub table back to its own osx stub table, instead let cygwin make use of the win32 stub table
| | | * revert part of [9922ac54e8]: remove Tcl_MacOSXOpenBundleResources and ↵jan.nijtmans2012-05-144-133/+49
| | | | | | | | | | | | | | | | Tcl_MacOSXOpenVersionedBundleResources from the UNIX stub table, instead let cygwin make use of the win32 stub table
| * | | Protect against receiving strings without ending \0, as external ↵jan.nijtmans2012-05-134-15/+17
| |\ \ \ | | |/ / | | | | | | | | applications (or Tcl with TIP #106) could generate that.
| | * | Protect against receiving strings without ending \0, as external ↵jan.nijtmans2012-05-134-15/+17
| | |\ \ | | | |/ | | | | | | | | applications (or Tcl with TIP #106) could generate that.
| | | * Protect against receiving strings without ending \0, as external ↵jan.nijtmans2012-05-132-4/+16
| | | | | | | | | | | | | | | | applications (or Tcl with TIP #106) could generate that.
| * | | first shot at internationalization of ddejan.nijtmans2012-05-101-48/+53
| | | |
| * | | [Bug 473946]: special characters not correctly sentjan.nijtmans2012-05-103-63/+80
| |\ \ \ | | |/ /
| | * | [Bug 473946]: special characters not correctly sentjan.nijtmans2012-05-103-55/+76
| | |\ \ | | | |/
| | | * [Bug 473946]: special characters not correctly senjan.nijtmans2012-05-103-827/+803
| | | |\
| | | | * Increase version to 1.2.5bug_473946jan.nijtmans2012-05-093-153/+119
| | | | | | | | | | | | | | | | | | | | | | | | | Now should work on Win95 as well Use Tcl_GetUnicodeFromObj in stead of Tcl_Win* functions, so we no longer have to detect whether we are on WinNT+
| | | | * [Bug 473946]: special characters not correctly sentjan.nijtmans2012-05-092-10/+51
| | | | |
| | | | * proposal from jmphilippejan.nijtmans2012-05-071-5/+11
| | | |/
| * | | [Bug 2812981]: Clean up bundled packages' build directory from within Tcl's ↵ferrieux2012-05-105-0/+26
| | | | | | | | | | | | | | | | ./configure, to avoid stale configuration.
* | | | Fix for bug 3525907. Reworked TransformInput() entirely, tightened use of ↵andreask2012-05-172-51/+257
|/ / / | | | | | | | | | timed events, and added code handling special situations like EAGAIN, parent eof, etc.
* | | Undone part of change [32d93a8414], keeping [chan postevent] synchronous for ↵andreask2012-05-092-17/+16
| | | | | | | | | | | | owner == handler.
* | | * generic/tclIORChan.c [Bug 3522560]: Fixed the crash, enabled theandreask2012-05-094-17/+167
| | | | | | | | | | | | | | | | | | | | | test case. Modified [chan postevent] to properly inject the event(s) into the owner thread's event queue for execution in the correct context. Renamed the ForwardOpTo...Thread() function to match with our terminology.
* | | * tests/ioCmd.test [Bug 3522560]: Added a test which crashes theandreask2012-05-092-0/+122
| | | | | | | | | | | | | | | | | | | | | core if it were not disabled as knownBug. For a reflected channel transfered to a different thread the [chan postevent] run in the handler thread tries to execute the owner threads's fileevent scripts by itself, wrongly reaching across thread boundaries.
* | | Properly close nonblocking channels even when not flushing them.ferrieux2012-05-072-3/+8
| | |
* | | move TCHAR definition for Cygwin from tclUnixPort.h to tclPlatDecls.h,jan.nijtmans2012-05-073-3/+2
|\ \ \ | |/ / | | | so it can be used for the Plat* interfaces as well
| * | move TCHAR definition for Cygwin from tclUnixPort.h to tclPlatDecls.h,jan.nijtmans2012-05-073-15/+11
| |\ \ | | |/ | | | so it can be used for the Plat* interfaces as well
| | * move TCHAR definition for Cygwin from tclUnixPort.h to tclPlatDecls.h, jan.nijtmans2012-05-074-16/+11
| | | | | | | | | so it can be used for the Plat* interfaces as well
* | | some more removals from zlib1.2.7jan.nijtmans2012-05-043-820/+0
| | |
* | | files removed from zlib-1.2.7jan.nijtmans2012-05-0437-10456/+0
| | |
* | | don't try to run the cpuid test when cpuid is not availablejan.nijtmans2012-05-032-0/+8
|\ \ \ | |/ /
| * | don't try to run the cpuid test when cpuid is not availablejan.nijtmans2012-05-031-0/+6
| |\ \ | | |/
| | * don't try to run the cpuid test if cpuid is not availablejan.nijtmans2012-05-031-4/+6
| | |
* | | zlib-1.2.7jan.nijtmans2012-05-0397-1703/+6053
| | |
* | | 3428754 Test socket-14.2 tolerate [socket -async] connection that connectsdgp2012-05-032-9/+15
| | | | | | | | | synchronously.
* | | 3428753 Fix [socket -async] connections that manage to connect synchronously.dgp2012-05-032-2/+7
| | |
* | | Move cpuid testcase from win-specific to generic testsjan.nijtmans2012-05-0311-107/+90
|\ \ \ | |/ /
| * | Move cpuid testcase from win-specific to generic testsjan.nijtmans2012-05-0316-163/+92
| |\ \ | | |/
| | * Move cpuid testcase from win-specific to generic testsjan.nijtmans2012-05-0316-330/+137
| | | | | | | | | Simplify stub tables for functions which work on both UNIX and windows
* | | move some more CYGWIN stuff to unix/tclUnixPort.hjan.nijtmans2012-05-032-5/+6
|\ \ \ | |/ /
| * | move some more CYGWIN stuff to unix/tclUnixPort.hjan.nijtmans2012-05-032-5/+6
| |\ \ | | |/
| | * move some more CYGWIN stuff to unix/tclUnixPort.hjan.nijtmans2012-05-033-12/+11
| | |