summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Change version number of http package from 2.9.5 -> 2.10.0a1, since it's ↵jan.nijtmans2020-09-1711-24/+24
|\ | | | | | | | | different from the 2.9.5 version in Tcl 8.6.x. Use "$idx >= 0" check in stead of "$idx > -1" everywhere.
| * Tcl 8.6 should not be tested with "package prefer latest" any more: All ↵jan.nijtmans2020-09-171-1/+0
| | | | | | | | included packages are supposed to be stable. Not to be merged to 8.7 (which still contains unstable packages)
* | Merge 8.6jan.nijtmans2020-09-171-5/+14
|\ \ | |/
| * Fix [835c93c000]: TIP #525 only implemented for non-singleproc casejan.nijtmans2020-09-171-5/+14
| |\
| | * Fix [835c93c000]: TIP #525 only implemented for non-singleproc casejan.nijtmans2020-09-171-8/+17
| | |\
| | | * Proposed solution for [835c93c000]: TIP #525 only implemented for ↵jan.nijtmans2020-09-161-5/+14
| | |/ | |/| | | | | | | non-singleproc case
* | | Little tweak to makeHeader.tcl, not depending on lsearch returning -1 any morejan.nijtmans2020-09-161-1/+1
| | |
* | | one more testdgp2020-09-151-0/+3
|\ \ \
| * | | Add test for [string replace] troubles.dgp2020-09-151-0/+3
| | | |
* | | | Fix [b5777d3d32]: Crash corner-case in TIP #502 implementationjan.nijtmans2020-09-155-18/+62
|\ \ \ \ | |/ / /
| * | | Protect INST_STR_REPLACE toojan.nijtmans2020-09-041-0/+3
| | | |
| * | | Tests string-12.2[45].* and fixes to INST_STRING_RANGE.dgp2020-09-022-2/+24
| | | |
| * | | Fix for test lindex-18.0dgp2020-09-022-16/+21
| | | |
| * | | Test lindex-18.0 demonstrates same issue with INST_LIST_INDEXdgp2020-09-021-0/+8
| | | |
| * | | Different fix where existing protection tools for nesting bytecode executiondgp2020-09-021-0/+3
| | | | | | | | | | | | | | | | calls are used. This solution suggests there may be many more places needing protection. Any routine that gets passed "interp" is a possibility.
| * | | Add test-case util-9.59, which demonstrates bug [b5777d3d32]jan.nijtmans2020-08-251-0/+3
| | | |
* | | | Merge 8.6jan.nijtmans2020-09-143-18/+2
|\ \ \ \ | | |/ / | |/| |
| * | | Unbreak winFCmd-1.38 testcase on Windowsjan.nijtmans2020-09-141-1/+1
| | | |
| * | | Add .bmp to .gitattributes. Simplify .fossil-settings/binary-globjan.nijtmans2020-09-142-7/+11
| | | |
| * | | Eliminate many "register" keywords (which do nothing with modern compilers)jan.nijtmans2020-09-1419-268/+268
| | | | | | | | | | | | Eliminate many unnecessary type-casts to (unsigned)
* | | | Merge 8.6jan.nijtmans2020-09-1412-20/+20
|\ \ \ \ | |/ / /
| * | | Prevent the usage of the term safe/unsafe child. Suggested by Keith Nash. ↵jan.nijtmans2020-09-1416-33/+33
| | | | | | | | | | | | | | | | | | | | Thanks! More usage of $index<0 in stead of $index==-1 consistantly
* | | | Prevent the usage of the term safe/unsafe child. Suggested by Keith Nash. ↵jan.nijtmans2020-09-144-11/+11
| | | | | | | | | | | | | | | | Thanks!
* | | | Merge implementation of TIP #585 (Promote the INDEX_TEMP_TABLE flag of ↵fvogel2020-09-136-25/+26
|\ \ \ \ | | | | | | | | | | | | | | | Tcl_GetIndexFromObj*() to the public interface) after positive vote from the TCT.
| * | | | Implementation of TIP #585 - Promote the INDEX_TEMP_TABLE flag of ↵fvogel2020-09-026-25/+26
| | | | | | | | | | | | | | | | | | | | Tcl_GetIndexFromObj*() to the public interface
* | | | | Merge 8.6jan.nijtmans2020-09-113-8/+8
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Folow-up to previous commit: ExecStack is a FLEXARRAY toojan.nijtmans2020-09-112-4/+4
| | | | |
* | | | | Merge 8.6. Remove tests/safe-stock86.test for win builds too (GIT, what are ↵jan.nijtmans2020-09-119-23/+31
|\ \ \ \ \ | |/ / / / | | | | | | | | | | you doing ...!)
| * | | | Fix [https://core.tcl-lang.org/tk/tktview?name=3bc0f44ef3|3bc0f44ef3]: UBSan ↵jan.nijtmans2020-09-118-46/+52
| | | | | | | | | | | | | | | | | | | | | | | | | complains about body.chars[] usage. (Yes, I know, this one is for Tk, but Tcl was using the same construct too ....)
| * | | | Use $index<0 in stead of $index==-1 consistantlyjan.nijtmans2020-09-114-7/+7
| | | | |
* | | | | Use $index<0 in stead of $index==-1 consistantlyjan.nijtmans2020-09-115-8/+8
| | | | |
* | | | | Somehow GIT cannot remove tests/safe-stock86.test from (earlier) ↵jan.nijtmans2020-09-101-0/+1
| | | | | | | | | | | | | | | | | | | | core-8-6-branch, so we do it.
* | | | | Merge 8.6jan.nijtmans2020-09-105-15/+15
|\ \ \ \ \ | |/ / / /
| * | | | Don't use sizeof() for structs containing a flexible array as last element. ↵jan.nijtmans2020-09-103-13/+13
| | | | | | | | | | | | | | | | | | | | Lesson from [https://core.tcl-lang.org/tk/info/3bc0f44ef3|3bc0f44ef3]. Use TclOffset in stead.
* | | | | Merge 8.6jan.nijtmans2020-09-091-14/+9
|\ \ \ \ \ | |/ / / /
| * | | | Rename safe-stock86.test to safe-stock.testjan.nijtmans2020-09-091-11/+6
| | | | |
* | | | | Merge-markjan.nijtmans2020-09-070-0/+0
|\ \ \ \ \ | |/ / / /
| * | | | Fix "make install" on MacOSX: interp: make-manpage-section: ignoring .VS ↵jan.nijtmans2020-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | "TIP 581" after .TP
* | | | | Merge-markjan.nijtmans2020-09-070-0/+0
|\ \ \ \ \ | |/ / / /
| * | | | Backport genStubs.tcl from 8.7. This adds support for MP_WUR, not actually ↵jan.nijtmans2020-09-071-0/+10
| | | | | | | | | | | | | | | | | | | | used by Tcl. But could be used in (libtommath-related) extensions
* | | | | Re-apply fix for [c1a376375e0e6488], as the build-problems originated elsewherejan.nijtmans2020-09-068-48/+78
|\ \ \ \ \
| * \ \ \ \ New bug-c1a376375e0e6488 branch with (up to now) failing solutions. Please ↵jan.nijtmans2020-09-051-96/+0
| |\ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | make sure Travis builds OK before merging to core-8-branch
* | | | | | Backout [c1a376375e0e6488]: imported namespace ensemble command name ↵jan.nijtmans2020-09-059-174/+48
|/ / / / / | | | | | | | | | | | | | | | | | | | | distorted during deletion trace on the import. According to Travis, there's a memory leak which needs to be fixed first.
* | | | | Merge-markjan.nijtmans2020-09-050-0/+0
|\ \ \ \ \ | |/ / / /
| * | | | TIP #581: Last possible master/slave -> parent/child changes, without ↵jan.nijtmans2020-09-058-279/+279
| | | | | | | | | | | | | | | | | | | | affecting anything serious
* | | | | Merge 8.6jan.nijtmans2020-09-04156-234/+288
|\ \ \ \ \ | |/ / / /
| * | | | Let all test-cases load the "tcltest" package the same way. Depend on ↵jan.nijtmans2020-09-04145-293/+332
| | | | | | | | | | | | | | | | | | | | tcltest 2.5, since we never test with earlier tcltest versions
* | | | | Merge 8.6jan.nijtmans2020-09-044-93/+93
|\ \ \ \ \ | |/ / / / | | / / / | |/ / / |/| | |
| * | | TIP #581: Mainly documentation and some testcasesjan.nijtmans2020-09-0412-312/+311
| | | |
* | | | Merge 8.6jan.nijtmans2020-09-023-12/+14
|\ \ \ \ | |/ / /