summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | Replace use of TclIsLocalScalar() and late setting of varIndexes with andgp2014-12-181-15/+29
| | | | | | | | | | | | earlier setting of varIndexes using PushVarNameWord().
| | * | Simplify creation and storage of temporariesdgp2014-12-181-17/+7
| | | |
| | * | With that shift, varcList is no longer needed.dgp2014-12-181-7/+1
| | | |
| | * | Shift the allocation of AuxData earlier in the [foreach] compiler.dgp2014-12-181-16/+25
| | | |
| | * | merge 8.5dgp2014-12-1857-544/+679
| | |\ \ | | |/ / | |/| |
| | * | Similar conversion of the [dict append] compiler.dgp2014-12-111-16/+9
| | | |
| | * | Similar conversion for [dict update] compiler.dgp2014-12-111-30/+15
| | | |
| | * | Similar revisions to [dict incr] compiler.dgp2014-12-111-38/+22
| | | |
| | * | Get the word number right, even though it has no effect.dgp2014-12-111-1/+1
| | | |
| | * | [e711ffb458] Same conversion for [catch] compiler.dgp2014-12-111-36/+7
| | | |
| | * | [e711ffb458] Replace TclIsLocalScalar() with PushVarNameWord() in thedgp2014-12-091-13/+7
| | | | | | | | | | | | compiler for [dict set].
| | * | [e711ffb458] Replace TclIsLocalScalar() (which does the wrong thing).... withdgp2014-12-092-14/+8
| | | | | | | | | | | | PushVarNameWord() (which doesn't) in the compiler for [dict lappend].
* | | | [7c187a3773] Fix error in managing inStatePtr->inQueueTail value in thedgp2014-12-182-0/+41
| | | | | | | | | | | | byte-moving optimized path of [chan copy]. Thanks to Benno.
* | | | [af08e89777] Rework finalization to stop encoding-24.2 segfault.dgp2014-12-184-9/+23
|\ \ \ \
| * | | | Rework the *FinalizeThread*() routines so that the quick exit preferencebug_af08e89777dgp2014-12-173-6/+14
| | | | | | | | | | | | | | | | | | | | is respected without need to run afoul of encoding finalizations. tests pass now. All changes are fully internal.
| * | | | Revise encoding finalization so that it does a more complete job of restoringdgp2014-12-171-3/+9
|/ / / / | | | | | | | | | | | | the pre-initialized state. This makes finalization errors more repeatable and cross-platform.
* | | | changes for TIP427oehhar2014-12-171-0/+2
| | | |
* | | | Include option -connecting in test iocmd-8.15.1oehhar2014-12-171-1/+1
| | | |
* | | | TIP-427: make "fconfigure $h -connecting" official (client sockets only)oehhar2014-12-173-3/+12
|\ \ \ \
| * | | | Documented "fconfigure $h -connecting" on socket man pagetip_427oehhar2014-12-171-0/+9
| | | | |
| * | | | Merge trunkoehhar2014-12-17118-924/+1758
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | 85 -> 86jan.nijtmans2014-12-151-1/+1
| | | | |
* | | | | merge-markjan.nijtmans2014-12-140-0/+0
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Add header install flag to OS X GNUMakefile; thanks to Stephan Houben for patchKevin Walzer2014-12-131-1/+1
| | | | |
* | | | | Add header install flag to OS X GNUMakefile; thanks to Stephan Houben for patchKevin Walzer2014-12-131-1/+1
| | | | |
* | | | | merge tzdata2014j from ietf.orgvenkat2014-12-1056-543/+678
|\ \ \ \ \ | |/ / / /
| * | | | tzdata2014j from ietf.orgvenkat2014-12-1056-543/+678
| | |/ / | |/| |
* | | | Fix some gcc compiler warnings (probably cygwin-only)jan.nijtmans2014-12-081-20/+20
|\ \ \ \ | |/ / /
| * | | Fix some gcc compiler warnings (probably cygwin-only)jan.nijtmans2014-12-081-3/+3
| | | |
* | | | test for bug [c6ed4acfd8]: running async socket connect with other connect ↵oehhar2014-12-071-0/+18
| | | | | | | | | | | | | | | | established will block tcl as it goes in an infinite loop in vwait
* | | | Potential fix for [c6ed4acfd8]. ashok2014-12-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Simple typo in original fix for [336441ed59]. Was looping on statePtr->next instead of statePtr2->next. Would result in an infinite loop. Definitely a bug but whether it completely fixes the above in all cases needs to be tested.
* | | | Ever since (Tcl)PushVarName() stopped making a recursive call to ↵dgp2014-12-051-10/+1
|\ \ \ \ | |/ / / | | | | | | | | Tcl_ParseCommand() (in the pre-8.4.0 timeframe), there's been no need for special protections for brace-quoted varname words. A simple word is a simple word is a simple word.
| * | | Ever since (Tcl)PushVarName() stopped making a recursive call todgp2014-12-051-10/+1
| | | | | | | | | | | | | | | | | | | | Tcl_ParseCommand() (in the pre-8.4.0 timeframe), there's been no need for special protections for brace-quoted varname words. A simple word is a simple word is a simple word.
* | | | [d2ffcca163] Limit parsing results that are documented to accept only ASCII ↵dgp2014-12-055-44/+83
|\ \ \ \ | |/ / / | | | | | | | | chars to actually follow that constraint. This requires not trusting isalnum(.) and isalpha(.) to deliver portable identical results.
| * | | [d2ffcca163] Limit parsing results that are documented to accept onlydgp2014-12-045-43/+83
| |\ \ \ | | | | | | | | | | | | | | | ASCII chars to actually follow that constraint. This requires not trusting isalnum(.) and isalpha(.) to deliver portable identical results.
| | * | | Limit isalpha(.) calls in the expr parser to only apply to known ASCIIbug_d2ffcca163dgp2014-12-041-3/+4
| | | | | | | | | | | | | | | arguments to make the results portable.
| | * | | The isalpha(.) calls remaining in the expr parser still bring nonportability.dgp2014-12-041-0/+3
| | | | | | | | | | | | | | | Commit a test that demonstrates that.
| | * | | Stop using isalnum(.). Its results are not portable. Replace with ourdgp2014-12-043-9/+54
| | | | | | | | | | | | | | | own private routine TclIsBareword() that does exactly what we want.
| | * | | merge 8.5dgp2014-12-042-3/+11
| | |\ \ \ | | |/ / / | |/| | |
| | * | | Same issue in expr parser also tested and fixed.dgp2014-11-262-20/+18
| | | | |
| | * | | I like this patch better. Retain the byte orientation of the parser.dgp2014-11-261-17/+4
| | | | |
| | * | | One way to fix the parser of $-substitution accepting non-ASCII varnames.dgp2014-11-252-0/+6
| | | | |
* | | | | And then another merge mark to finish.dgp2014-12-030-0/+0
|\ \ \ \ \ | |/ / / /
* | | | | Now make the patch by hand that fossil could not merge.dgp2014-12-031-2/+1
| | | | |
* | | | | Just a merge mark since fossil cannot do it right.dgp2014-12-030-0/+0
|\ \ \ \ \ | |/ / / /
| * | | | [0c043a175] backport fix from trunk.dgp2014-12-032-3/+11
| |\ \ \ \ | |/ / / / |/| / / / | |/ / /
* | | | missing unset in new testMiguel Sofer2014-12-031-1/+1
| | | |
* | | | fix var($) problem, bug [0c043a175] (thx dgp)Miguel Sofer2014-12-032-3/+12
|\ \ \ \
| * | | | test and fix (thx dgp)bug_0c043a175Miguel Sofer2014-12-032-5/+6
| | | | |
| * | | | adding a test for the bugMiguel Sofer2014-12-031-2/+10
| | | | |