summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
Commit message (Expand)AuthorAgeFilesLines
* Fix for [f9800d52bd61f240], vwait is not NRE-enabled, and yieldto cannot findpooryorick2021-06-201-0/+1
* Merge 8.6. Make c++ compile (with g++-11) warning-freejan.nijtmans2021-05-271-1/+1
|\
* \ Merge 8.6, except [688fcc7082] because it gives a merge conflictjan.nijtmans2021-05-201-2/+2
|\ \ | |/
| * Fix [52cc90776c]: Warning when compile with gcc v9.3.0jan.nijtmans2021-05-201-2/+2
| * Make tclCkalloc.c and tclExecute warning-free on Windows when compiled with -...jan.nijtmans2021-01-201-10/+10
* | Fix potential endless loop in "stats" command (only enable in debug-build)jan.nijtmans2021-01-201-3/+3
* | Merge 8.7jan.nijtmans2020-12-111-11/+11
|\ \
| * | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ...jan.nijtmans2020-12-081-7/+7
| * | More TCL_UNUSEDjan.nijtmans2020-11-261-1/+1
| * | squelch warning by using proper format specifiersjan.nijtmans2020-11-261-2/+2
* | | Merge 8.7jan.nijtmans2020-11-251-590/+684
|\ \ \ | |/ /
| * | Merge 8.6jan.nijtmans2020-10-131-3/+3
| |\ \ | | |/
| | * More usage of TclNewObj() in stead of Tcl_NewObj() and TclNewIntObj() in stea...jan.nijtmans2020-10-131-4/+4
| * | Merge 8.6jan.nijtmans2020-09-281-3/+3
| |\ \ | | |/
| | * Make Tcl compile warning-free using -Wshadowjan.nijtmans2020-09-281-17/+17
| * | Eliminate many usages of Tcl_NewObj (-> TclNewObj) and Tcl_NewIntObj (-> TclN...jan.nijtmans2020-09-171-4/+4
| * | Fix [b5777d3d32]: Crash corner-case in TIP #502 implementationjan.nijtmans2020-09-151-9/+29
| |\ \
| | * | Protect INST_STR_REPLACE toojan.nijtmans2020-09-041-0/+3
| | * | Tests string-12.2[45].* and fixes to INST_STRING_RANGE.dgp2020-09-021-2/+10
| | * | Fix for test lindex-18.0dgp2020-09-021-7/+13
| | * | Different fix where existing protection tools for nesting bytecode executiondgp2020-09-021-0/+3
| * | | Merge 8.6jan.nijtmans2020-09-111-4/+4
| |\ \ \ | | | |/ | | |/|
| | * | Folow-up to previous commit: ExecStack is a FLEXARRAY toojan.nijtmans2020-09-111-3/+3
| | * | Eliminate many unnecessary type-casts, mostly (size_t) when value is already ...jan.nijtmans2020-08-111-2/+2
| * | | Fix for [c1a376375e0e6488], imported namespace ensemble command name distortedpooryorick2020-09-011-7/+13
| | |/ | |/|
| * | More usage of TclNewIntObj() macrojan.nijtmans2020-08-131-3/+3
| * | Merge 8.6jan.nijtmans2020-07-161-1/+17
| |\ \ | | |/
| | * closes [3c6e47363e]: missing de-duplication mechanism for nested TEBC startin...sebres2020-07-151-1/+17
| * | Fix compiled "string is <class>" for characters > U+FFFF. Add testcase exposi...jan.nijtmans2020-05-251-2/+4
| |\ \ | | |/
| | * Fix compiled "string is <class>" for TCL_UTF_MAX=4 build, for characters > U+...jan.nijtmans2020-05-251-2/+4
| | * New internal function TclGetUCS4() only available when TCL_UTF_MAX=4. This fi...jan.nijtmans2020-05-041-9/+3
| * | Optimize TclStringFirst/TclStringLast: Let it return a Tcl_Obj * in stead of ...jan.nijtmans2020-03-301-6/+4
| * | Merge 8.6jan.nijtmans2020-03-181-1/+1
| |\ \ | | |/
| | * More uppercase HEX representations in source-code.jan.nijtmans2020-03-181-9/+9
| * | moredgp2020-03-061-10/+14
| * | Merge 8.7jan.nijtmans2020-02-131-62/+153
| |\ \
| | * \ Merge 8.7, more WIPjan.nijtmans2020-01-171-6/+3
| | |\ \
| | * \ \ Merge 8.7jan.nijtmans2020-01-151-2/+33
| | |\ \ \ | | | |/ /
| | | * | Merge-mark 8.6. Remove a few "break"'s added in the previous commit, because ...jan.nijtmans2020-01-151-8/+0
| | | |\ \ | | | | |/
| | | | * A few more "break" statements, so any compiler knows these are no FALLTHROUGH...jan.nijtmans2020-01-151-17/+59
| | | * | A few more "break" statements, so any compiler knows these are no FALLTHROUGH...jan.nijtmans2020-01-141-1/+40
| | * | | Start handling WUR (Warn Unused Result) in all tommath calls. WIP, not comple...jan.nijtmans2020-01-091-59/+122
| | |/ /
| | * | Merge 8.6jan.nijtmans2020-01-081-4/+4
| | |\ \ | | | |/
| | | * Use _copysign on Windows always (available from float.h). Use mp_iszero() whe...jan.nijtmans2020-01-081-3/+3
| | | |\
| | | * | Fix Valgrind problem reported as follow-up in [fc4393e9b0]. Since it happens ...jan.nijtmans2019-12-081-1/+1
| * | | | Merge 8.7jan.nijtmans2020-01-071-1/+18
| |\ \ \ \ | | |/ / /
| | * | | Don't use "operator" as variable name, as it is a keyword in C++.jan.nijtmans2020-01-071-6/+27
| | * | | Remove type-casts in many Tcl_LinkVar() calls, which is no longer necessary s...jan.nijtmans2020-01-071-1/+1
| * | | | Merge 8.7jan.nijtmans2019-12-131-5/+5
| |\ \ \ \ | | |/ / /
| | * | | Merge 8.7. ignore MP_WUR for mp_neg() calls with equal arguments (even though...jan.nijtmans2019-11-181-2/+2
| | |\ \ \