summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.7jan.nijtmans2019-09-035-22/+63
|\
| * Merge 8.6jan.nijtmans2019-09-035-22/+63
| |\
| | * Backout [87d28ec30a29e3ce]: Looks like it causes test-failures in event.test ↵jan.nijtmans2019-09-031-2/+1
| | |\ | | | | | | | | | | | | on Windows.
| | | * Backout last commit: Looks like it causes test-failures in event.test on ↵jan.nijtmans2019-09-031-2/+1
| | | | | | | | | | | | | | | | Windows.
| | * | Fix testing for debug build on UNIX too (on UNIX, ::tcl_platform(debug) is ↵jan.nijtmans2019-09-021-1/+1
| | | | | | | | | | | | | | | | not set ....)
| | * | windows (mingw build): fix debug recognition (::tcl_platform(debug)), no ↵sebres2019-09-022-2/+2
| | | | | | | | | | | | | | | | debug if NDEBUG is set
| | * | Merge 8.5jan.nijtmans2019-09-021-1/+2
| | |\ \ | | | |/
| | | * Missing TCL_GLOBAL_ONLY flag in VwaitVarProc(): vwait always references ↵jan.nijtmans2019-09-021-1/+2
| | | | | | | | | | | | | | | | global variables, this could lead to strange side-effects.
| | * | Merge 8.5. Add (still unused) runstatedir in Makefile.in. Re-generate ↵jan.nijtmans2019-09-024-3290/+3124
| | |\ \ | | | |/ | | | | | | | | win/unix configure scripts.
| | | * Fix [5591e4a820]: @TCL_EXE@ not properly generated in 8.5 branch. Added ↵jan.nijtmans2019-09-022-2/+3
| | | | | | | | | | | | | | | | @runstatedir@ in Makefile.in, not used yet (except if someone decides to re-generate "configure" with autconf-2.70).
| | * | merge 8.5 - compile.test: reduce count of nested scripts to 1000 in debug ↵sebres2019-08-301-2/+2
| | |\ \ | | | |/ | | | | | | | | | | | | case (seems to be to heavy on some platforms within debug-build); (small amend to the fix of [fec0c17d39])
| | | * compile.test: reduce count of nested scripts to 1000 in debug case (seems to ↵sebres2019-08-301-2/+2
| | | | | | | | | | | | | | | | | | | | be to heavy on some platforms within debug-build); (small amend to the fix of [fec0c17d39])
| | * | fixes bug [fec0c17d39] (regression firstly introduced in [bf171b6b51]): ↵sebres2019-08-292-18/+60
| | |\ \ | | | | | | | | | | | | | | | stack overflow (followed by segfault) by compilation of too many nested scripts (don't use system stack anymore)
| | | * | closes [fec0c17d39]: fixed stack overflow (followed by SF) by compilation of ↵sebres2019-08-291-18/+29
| | | | | | | | | | | | | | | | | | | | too many nested bodies (don't use system stack, size of Tcl_Parse is ca. 400 bytes and compiler proc's of commands are reserving stack too)
| | | * | more variants in test (since 8.6 compiles "try" using evalStk instruction)sebres2019-08-291-2/+2
| | | | |
| | | * | bug [fec0c17d39]: add test cases covering nested compilation (8.6th compile ↵sebres2019-08-291-0/+31
| | | |\ \ | | | | |/ | | | | | | | | | | generates a stack overflow with following segfault by 2000 nested bodies)
| | | | * add test cases covering nested compilation bug [fec0c17d39] (8.5 is not ↵sebres2019-08-291-0/+31
| | | | | | | | | | | | | | | | | | | | affected at the moment by nested count under 2500)
* | | | | Merge 8.7jan.nijtmans2019-09-026-7/+10
|\ \ \ \ \ | |/ / / /
| * | | | Tcl_UntraceVar() -> Tcl_UntraceVar2() and similar changes. jan.nijtmans2019-09-026-7/+10
| | | | | | | | | | | | | | | Add @runstatedir@ to Makefile.in's (not used yet)
* | | | | Merge from core-8-branch. nmake bug fix [889065786b] for extension stubs.apnadkarni2019-08-291-4/+4
|\ \ \ \ \ | |/ / / /
| * | | | Merge core-8-6-branch. nmake bug fix [889065786b] for extension stubs.apnadkarni2019-08-291-3/+3
| |\ \ \ \ | | |/ / /
| | * | | Bug fix 889065786b. Add stubs related flags when compiling extension stubs.apnadkarni2019-08-291-3/+3
| | | | |
| * | | | Fix one version-check in rules.vc (Thanks to Ashok P. Nadkarni for noticing ↵jan.nijtmans2019-08-291-1/+1
| |\ \ \ \ | | |/ / / | | | | | | | | | | this!)
| | * | | Starting with Tcl 8.7, TCL_THREADS is 1 by default. Adapt rules.vc for that.jan.nijtmans2019-08-291-5/+5
| | | | |
* | | | | Merge 8.7jan.nijtmans2019-08-2821-69/+175
|\ \ \ \ \ | |/ / / /
| * | | | Merge 8.6jan.nijtmans2019-08-2820-54/+60
| |\ \ \ \ | | |/ / /
| | * | | Add /* FALLTHRU */ markers in various places (silencing possible GCC ↵jan.nijtmans2019-08-2823-61/+67
| | |/ / | | | | | | | | | | | | warnings). Eliminate some more "register" keywords. Eliminate (or silence) some unused function parameters.
| * | | merge 8.6sebres2019-08-273-16/+116
| |\ \ \ | | |/ /
| | * | closes [fa6bf38d07]: integrate bug-fa6bf38d07-v2sebres2019-08-273-16/+116
| | |\ \
| | | * | small amend: be sure checkInterp is set if entering back the code marked as ↵sebres2019-08-271-2/+2
| | | | | | | | | | | | | | | | | | | | TCL_BYTECODE_RECOMPILE (normally also set in CACHE_STACK_INFO, but...)
| | | * | simplification, use the same "fixed" (and faster) code for INST_EVAL_STKsebres2019-08-271-11/+6
| | | | |
| | | * | fixes [fa6bf38d07]: command invocation (NRE callback to TEBCResume) caused ↵sebres2019-08-271-9/+20
| | | | | | | | | | | | | | | | | | | | by execution of recompiled TEBC (on epoch bump)
| | | * | more test casessebres2019-08-271-1/+42
| | | | |
| | | * | added tests covering bug [fa6bf38d07]sebres2019-08-272-4/+57
| | | | |
* | | | | Merge 8.7jan.nijtmans2019-08-272-2/+2
|\ \ \ \ \ | |/ / / /
| * | | | Merge 8.6jan.nijtmans2019-08-272-2/+2
| |\ \ \ \ | | |/ / /
| | * | | Merge 8.5jan.nijtmans2019-08-271-1/+1
| | |\ \ \ | | | | |/ | | | |/|
| | | * | One more knownMsvcBug marker (seen in Travis). Properly export ↵jan.nijtmans2019-08-272-1/+2
| | | | | | | | | | | | | | | | | | | | ::tcltest::testConstraint in cmdMZ.test
| | | * | Backport two knownMsvcBug markers, which hit us (again) on Travis.jan.nijtmans2019-08-271-7/+9
| | | | |
* | | | | Merge 8.7jan.nijtmans2019-08-261-4/+5
|\ \ \ \ \ | |/ / / /
| * | | | Merge 8.6jan.nijtmans2019-08-261-4/+5
| |\ \ \ \ | | |/ / /
| | * | | Fix [3947fcf7]: Current .gitattributes settings might not allow switching ↵jan.nijtmans2019-08-261-4/+6
| | |\ \ \ | | | |/ / | | | | / | | | |/ | | |/| branches
| | | * Fix [3947fcf7]: Current .gitattributes settings might not allow switching ↵jan.nijtmans2019-08-261-4/+6
| | | |\ | | | | | | | | | | | | | | | branches
| | | | * Attempt to fix [3947fcf7]: Current .gitattributes settings might not allow ↵jan.nijtmans2019-08-231-4/+5
| | | | | | | | | | | | | | | | | | | | switching branches
* | | | | Merge 8.7jan.nijtmans2019-08-266-8/+14
|\ \ \ \ \ | |/ / / /
| * | | | Merge 8.6jan.nijtmans2019-08-266-8/+14
| |\ \ \ \ | | |/ / /
| | * | | Merge 8.5jan.nijtmans2019-08-264-6/+12
| | |\ \ \ | | | |/ /
| | | * | If tcltest's removeFile fails for a non-expected reason (e.g. Windows keeps ↵jan.nijtmans2019-08-263-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | the file locked), this should not result in a test failure, just a warning. Observed in this Travis build: [https://travis-ci.org/tcltk/tcl/jobs/576443957] Tcl test 2.5.0 -> 2.5.1
| | | * | One more "knownMsvcBug" marker, for a test-case which failed (incidentally) ↵jan.nijtmans2019-08-261-2/+3
| | | | | | | | | | | | | | | | | | | | in Travis.
| | * | | Correct NUL encoding in documentationandy2019-08-241-1/+1
| | | | |