Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix loading of timezones where one abbreviation is a proper suffix of ↵ | Kevin B Kenny | 2012-01-08 | 5 | -3/+164 |
|\ | | | | | | | another [Bug 3470928] | ||||
| * | Fix loading of timezones where one abbreviation is a proper suffix of ↵ | Kevin B Kenny | 2012-01-08 | 3 | -3/+162 |
| | | | | | | | | another [Bug 3470928] | ||||
* | | Update to Olson's tzdata2011n | venkat | 2011-12-30 | 8 | -6/+901 |
|\ \ | |/ | |||||
| * | Actually check in the files, not just the Changelog. | venkat | 2011-12-30 | 7 | -6/+891 |
| | | |||||
| * | Update to Olson's tzdata2011n | venkat | 2011-12-30 | 1 | -0/+10 |
| | | |||||
* | | [Bug 3464428] string is graph \u0120 is wrong | jan.nijtmans | 2011-12-24 | 6 | -164/+119 |
|\ \ | |/ | |||||
| * | [Bug 3464428] string is graph \u0120 is wrong | jan.nijtmans | 2011-12-24 | 6 | -167/+125 |
| |\ | |||||
| | * | [Bug 3464428] string is graph \u0120 is wrong | jan.nijtmans | 2011-12-23 | 6 | -241/+129 |
| | | | |||||
* | | | (TclInitAuxDataTypeTable): Extended to register the DictUpdateInfo structure ↵ | andreask | 2011-12-13 | 2 | -0/+7 |
| | | | | | | | | | | | | as an AuxData type. For use by tbcload, tclcompiler. | ||||
* | | | Some Unicode 6.0 chars not in [:print:] class | jan.nijtmans | 2011-12-11 | 3 | -87/+14 |
|\ \ \ | |/ / | |||||
| * | | [Bug 3457031]: Some Unicode 6.0 chars not in [:print:] class | jan.nijtmans | 2011-12-11 | 3 | -87/+14 |
| | | | |||||
* | | | [Bug 3444754] string tolower \u01c5 is wrong | jan.nijtmans | 2011-12-07 | 4 | -25/+40 |
|\ \ \ | |/ / | |||||
| * | | [Bug 3444754] string tolower \u01c5 is wrong | jan.nijtmans | 2011-12-07 | 4 | -25/+40 |
| |\ \ | | |/ | |||||
| | * | [Bug 3444754] string tolower \u01c5 is wrong | jan.nijtmans | 2011-12-07 | 4 | -25/+40 |
| | | | |||||
* | | | Note incompatibility caused by switch of flags to dlopen() for Bug 3216070. | dkf | 2011-12-01 | 2 | -0/+5 |
|\ \ \ | |/ / | |||||
| * | | Note incompatibility caused by switch of flags to dlopen() for Bug 3216070. | dkf | 2011-12-01 | 2 | -0/+5 |
| | | | |||||
* | | | [Bug 967195]: Make tcltest work when tclsh is compiled without using the ↵ | jan.nijtmans | 2011-11-30 | 6 | -10/+24 |
|\ \ \ | |/ / | | | | | | | setargv() function on mingw. | ||||
| * | | [Bug 967195]: Make tcltest work when tclsh is compiled without using the ↵ | jan.nijtmans | 2011-11-30 | 7 | -11/+25 |
| |\ \ | | |/ | | | | | | | setargv() function on mingw. | ||||
| | * | [Bug 967195]: Make tcltest work when tclsh is compiled without using the ↵ | jan.nijtmans | 2011-11-30 | 2 | -2/+16 |
| | | | | | | | | | | | | | | | setargv() function on mingw (no need to incr the version, since 2.2.10 is never released) | ||||
* | | | [Bug 2991415]: tclport.h #include'd before limits.h | jan.nijtmans | 2011-11-30 | 3 | -1/+3 |
| | | | |||||
* | | | don't install tommath_(super)?class.h | jan.nijtmans | 2011-11-30 | 3 | -4/+7 |
|\ \ \ | |/ / | | | | don't install directories like 8.2 and 8.3 | ||||
| * | | Use the same shebang comment everywhere | jan.nijtmans | 2011-11-30 | 6 | -7/+13 |
| |\ \ | | |/ | | | | | | | don't install tommath_(super)?class.h don't install directories like 8.2 and 8.3 | ||||
| | * | Use the same shebang comment everywhere | jan.nijtmans | 2011-11-29 | 4 | -3/+9 |
| | | | |||||
* | | | * library/history.tcl (history): Simplify the dance of variable | dkf | 2011-11-25 | 2 | -1/+6 |
| | | | | | | | | | management used when chaining to the implementation command. | ||||
* | | | Make some of the logic in TclCompileObj less heavily nested, to improve clarity. | dkf | 2011-11-22 | 2 | -100/+104 |
| | | | |||||
* | | | [Bug 2935503] Windows: file mtime sets wrong time (VS2005+ only) | jan.nijtmans | 2011-11-22 | 4 | -5/+13 |
|\ \ \ | |/ / | |||||
| * | | [Bug 2935503] Windows: file mtime sets wrong time (VS2005+ only) | jan.nijtmans | 2011-11-22 | 4 | -5/+13 |
| |\ \ | | |/ | |||||
| | * | [Bug 2935503]: Windows: file mtime sets wrong time | jan.nijtmans | 2011-11-22 | 4 | -0/+16 |
| | | | |||||
* | | | Fix a bug where global precompiled code (A) called from a precompiled | andreask | 2011-11-21 | 1 | -7/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | procedure causes the core to recompile (A), triggering the trap laid inside, i.e. 'error "called a copy of compiled code"'. <pre>Example ----------------------ex1.tcl proc init {} { source ex2.tcl } init ----------------------ex2.tcl puts a ----------------------</pre> When run as precompiled code the 'puts a' is not executed, only the trap. Fixed by enclosing the offending code into a guard which prevents its execution for precompiled code. The change passes the entire testsuite. | ||||
* | | | Fixed typo in a comment. | andreask | 2011-11-21 | 1 | -1/+1 |
| | | | |||||
* | | | Revise results of the thread-7.28 through thread-7.31 tests to account for ↵ | Joe Mistachkin | 2011-11-21 | 2 | -237/+330 |
| | | | | | | | | | | | | the fact they are canceled via a script sent to the thread asynchronously, which then impacts the error message handling. Attempt to manually drain the event queue for the main thread after joining the test thread to make sure no stray events are processed at the wrong time on the main thread. Revise all the synchronization and comparison semantics related to the thread id and error message. | ||||
* | | | Remove unnecessary [after] calls from the thread tests. Make error message ↵ | Joe Mistachkin | 2011-11-21 | 2 | -8/+21 |
| | | | | | | | | | | | | matching more robust for tests that may have built-in race conditions. Test thread-7.26 must first unset all thread testing related variables. | ||||
* | | | Remove all use of thread::release from the thread 7.x tests, replacing it ↵ | Joe Mistachkin | 2011-11-18 | 2 | -50/+75 |
| | | | | | | | | | | | | with a script that can easily cause 'stuck' threads to self-destruct for those test cases that require it. Also, make the error message handling far more robust by keeping track of every asynchronous error. | ||||
* | | | Refactor all the remaining thread-7.x tests that were using [testthread]. ↵ | Joe Mistachkin | 2011-11-18 | 2 | -88/+76 |
| | | | | | | | | | | | | Note that this test file now requires the very latest version of the Thread package to pass all tests. In addition, the thread-7.18 and thread-7.19 tests have been flagged as knownBug because they cannot pass without modifications to the [expr] command, persuant to TIP #392. | ||||
* | | | For [testthread cancel], avoid creating a new Tcl_Obj when the default ↵ | Joe Mistachkin | 2011-11-18 | 2 | -1/+7 |
| | | | | | | | | | | | | script cancellation result is desired. | ||||
* | | | win/tclWinConsole.c: Refactor common thread handling patterns. | dkf | 2011-11-11 | 2 | -212/+235 |
| | | | |||||
* | | | Generalize previous fix to all of zlib.test; also, tidy up [chan configure] ↵ | ferrieux | 2011-11-11 | 2 | -23/+24 |
| | | | | | | | | | | | | flags across zlib.test. | ||||
* | | | Use nonblocking writes in single-threaded IO tests to avoid deadlocks when ↵ | ferrieux | 2011-11-11 | 2 | -1/+6 |
| | | | | | | | | | | | | going beyond OS buffers [Bug 3428756]. | ||||
* | | | More work in progress converting tests from [testthread] to Thread package. | dgp | 2011-11-09 | 1 | -262/+235 |
| | | | |||||
* | | | missing constraint and too brittle result | dgp | 2011-11-08 | 2 | -2/+3 |
| | | | |||||
* | | | missing constraints | dgp | 2011-11-08 | 2 | -18/+138 |
|\ \ \ | |/ / | |||||
| * | | Missing constraints | dgp | 2011-11-08 | 2 | -16/+136 |
| | | | |||||
| * | | merge release to dev | dgp | 2011-11-07 | 11 | -11/+28 |
| |\ \ | |||||
| | * | | tag&bag another 8.5.11 RC.core_8_5_11core_8_5_11_rc | dgp | 2011-11-04 | 2 | -2/+17 |
| | | | | |||||
| | * | | merge to release | dgp | 2011-11-01 | 3 | -2/+8 |
| | |\ \ | | |/ / | |/| | | |||||
| | * | | merge to release | dgp | 2011-10-31 | 4 | -31/+19 |
| | |\ \ | |||||
| | * \ \ | Merge to release branch | dgp | 2011-10-26 | 1 | -6/+27 |
| | |\ \ \ | |||||
| | * | | | | Release candidate branch for Tcl 8.5.11. | dgp | 2011-10-20 | 9 | -10/+10 |
| | | | | | | |||||
* | | | | | | * unix/tclUnixCompat.c (TclpGetPwNam, TclpGetPwUid, TclpGetGrNam) | dkf | 2011-11-03 | 2 | -44/+223 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (TclpGetGrGid): Use the elaborate memory management scheme outlined on http://www.opengroup.org/austin/docs/austin_328.txt to handle Tcl's use of standard reentrant versions of the passwd/group access functions so that everything can work on all BSDs. Problem identified by Stuart Cassoff. | ||||
* | | | | | | Work in progress converting tests from [testthread cancel] to [thread::cancel] | dgp | 2011-11-01 | 2 | -348/+270 |
| | | | | | |