summaryrefslogtreecommitdiffstats
path: root/generic/tclTrace.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.6. Tcl_RegisterCommandTypeName/Tcl_GetCommandTypeName don't exist eitherjan.nijtmans2022-05-311-4/+0
|\
| * Tcl_SetCommandTokenInfo() does not existjan.nijtmans2022-05-311-4/+0
| |
* | Rename macro's TclListObjGetElements -> TclListObjGetElementsM and ↵jan.nijtmans2022-05-171-5/+5
| | | | | | | | TclListObjLength -> TclListObjLengthM (prevent conflict with TIP #616)
* | Merge 8.6jan.nijtmans2022-02-101-5/+5
|\ \ | |/
| * Use TclListObjLength/TclListObjGetElements in stead of ↵jan.nijtmans2022-02-101-5/+5
| | | | | | | | Tcl_ListObjLength/Tcl_ListObjGetElements everywhere. This is slightly more efficient if the refered list already has the correct type
* | Merge 8.6jan.nijtmans2022-01-121-2/+2
|\ \ | |/
| * Fix [da6f155ca4]: STRING_SIZE() macro: parenthesize numChars usage. Fix more ↵jan.nijtmans2022-01-121-2/+2
| | | | | | | | macro's like this.
| * More usage of TclNewObj() in stead of Tcl_NewObj() and TclNewIntObj() in ↵jan.nijtmans2020-10-131-4/+4
| | | | | | | | stead of Tcl_NewIntObj()
* | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵jan.nijtmans2020-12-081-4/+4
| | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
* | Fix -Wshadow warnings, when compiling with a C++ compilerjan.nijtmans2020-10-021-2/+2
| |
* | Merge 8.6jan.nijtmans2020-09-281-2/+1
|\ \ | |/
| * Make Tcl compile warning-free using -Wshadowjan.nijtmans2020-09-281-20/+19
| |
* | Eliminate many usages of Tcl_NewObj (-> TclNewObj) and Tcl_NewIntObj (-> ↵jan.nijtmans2020-09-171-3/+3
| | | | | | | | TclNewIntObj or Tcl_NewWideIntObj)
* | Merge 8.6jan.nijtmans2020-09-011-1/+1
|\ \ | |/
| * Eliminate many unnecessary type-casts, mostly (size_t) when value is already ↵jan.nijtmans2020-08-111-2/+2
| | | | | | | | size_t or int
* | More usage of TclNewIntObj() macrojan.nijtmans2020-08-131-2/+2
| |
* | TIP 569 - remove lint commentsdgp2020-03-171-3/+0
| |
* | Moredgp2020-03-091-10/+4
| |
* | Merge 8.7jan.nijtmans2020-02-131-2/+4
|\ \
| * \ merge 8.7dgp2019-12-301-21/+21
| |\ \
| * | | Start of TIP 543 implementation.dgp2019-05-101-2/+4
| | | |
* | | | Mark more function paramaters as unused. Now Tcl compiles fully (on UNIX and ↵jan.nijtmans2019-09-051-0/+2
|\ \ \ \ | | |/ / | |/| | | | | | Windows) without -Wunused-parameters warnings
* | | | Mark more unused parametersjan.nijtmans2019-09-031-0/+2
| | | |
* | | | Merge tip-548jan.nijtmans2019-08-151-13/+13
|\ \ \ \ | |/ / /
| * | | Merge 8.7jan.nijtmans2019-08-141-1/+1
| |\ \ \
| | * | | Remove "register" keyword in various places. Also add some type-casts to ↵jan.nijtmans2019-08-141-1/+1
| | | | | | | | | | | | | | | | | | | | help C++ compatibility.
| * | | | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ↵jan.nijtmans2019-07-171-18/+18
| |/ / / | | | | | | | | | | | | in C++ (removed in C++17, even), and essentially does nothing with most modern compilers.
* | | | Merge 8.7, and continue implementation. Almost donejan.nijtmans2019-07-101-31/+31
|\ \ \ \ | |/ / /
* | | | Experiment: compile Tcl with C++ compiler. WIPjan.nijtmans2019-07-041-1/+1
|/ / /
* | | Eliminate (internal) TclOffset() usage, just use offsetof() in stead.jan.nijtmans2019-06-121-3/+3
|/ /
* | More use of (efficient) TclHasIntRep() macro. Also eliminate many (size_t) ↵jan.nijtmans2019-02-271-3/+3
| | | | | | | | and (unsigned) type-casts, which don't make sense any more.
* | Merge 8.6jan.nijtmans2018-11-221-12/+4
|\ \ | |/ | | In addition, tclWinSerial.c: Change back two internal variables from size_t -> int, shouldn't have been done here.
| * More coverity issuesdkf2018-11-201-12/+4
| |
* | merge 8.6dgp2018-04-191-0/+41
|\ \ | |/
| * Refactor array trace handling into a common routine TclCheckArrayTraces().dgp2018-04-171-0/+41
| |
* | merge 8.6dgp2018-04-171-1/+11
|\ \ | |/
| * merge 8.5dgp2018-04-171-1/+11
| |\
| | * Restore build success to the TCL_REMOVE_OBSOLETE_TRACES configuration.dgp2018-04-171-1/+11
| | |
| | * Implement many Tcl_*Var* functions and Tcl_GetIndexFromObj as ↵jan.nijtmans2013-04-191-0/+3
| | | | | | | | | | | | (faster/stack-saving) macros around resp their Tcl_*Var*2 equivalent and Tcl_GetIndexFromObjStruct
* | | Addendum to previous commit: If compiled with TCL_NO_DEPRECATED, remove a ↵jan.nijtmans2017-03-211-0/+6
| | | | | | | | | | | | few more stub entries which are not used any more.
* | | More internal use of size_t in stead of int.jan.nijtmans2016-11-211-1/+1
| | |
* | | Micro-optimization: Use TclGetStringFromObj in stead of Tcl_GetStringFromObj ↵jan.nijtmans2016-07-081-4/+4
| | | | | | | | | | | | in many places where possible.
* | | Simplify use of "struct" keyword in many places.jan.nijtmans2016-06-301-1/+1
|/ /
* | Eliminate some usages of Tcl_GlobalEval() and Tcl_Eval(), which are ↵jan.nijtmans2016-01-181-1/+2
| | | | | | | | deprecated functions.
* | Another round of refCount consistancy improvements.jan.nijtmans2015-07-021-10/+10
| |
* | Possible fix for testing.dgp2014-10-021-4/+3
| |
* | [bc1a96407a] Partial solution should avoid crash, but may lead to wrong ↵dgp2014-10-021-1/+5
| | | | | | | | behavior.
* | Allow Tcl to be compiled even if Tcl_Eval, Tcl_GetVar, ... are macros.jan.nijtmans2013-02-281-0/+1
| |
* | Some VOID -> void, Tcl_TraceVar -> Tcl_TraceVar2 and Tcl_VarTraceInfo -> ↵jan.nijtmans2013-02-271-2/+4
| | | | | | | | Tcl_VarTraceInfo2 conversions.
* | Fix bug #2438181: Incorrect error reporting in traces. jan.nijtmans2013-02-191-1/+5
|\ \ | |/ | | Test-case and fix provided by Poor Yorick.