Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More use of (efficient) TclHasIntRep() macro. Also eliminate many (size_t) ↵ | jan.nijtmans | 2019-02-27 | 1 | -1/+1 |
| | | | | and (unsigned) type-casts, which don't make sense any more. | ||||
* | merge 8.6 (regression fix [e3f481f187], conflicts resolved) | sebres | 2019-02-01 | 1 | -30/+25 |
|\ | |||||
| * | code review with small amend (note nameLength is number of bytes, the ↵ | sebres | 2019-01-31 | 1 | -17/+16 |
| | | | | | | | | argument may be utf-8 as well as not necessarily a NTS, so access of char after end may cause segfault). | ||||
| * | fixes utf-8 compatibility of proc/lambda arguments (regression on compiled ↵ | sebres | 2019-01-30 | 1 | -14/+11 |
| | | | | | | | | | | | | | | locals/variables containing utf-8 characters) - CompiledLocal::nameLength is length in bytes not in chars everywhere in tcl; simplest example: % apply {{€} { set "€" }} 1; # or apply [list \u20ac { set \u20ac }] 1 can't read "€": no such variable | ||||
* | | New internal macro TclFetchIntRep, which is faster than Tcl_FetchIntRep. | jan.nijtmans | 2019-01-28 | 1 | -4/+4 |
| | | | | | | But ... don't use this function when the result is only compared to NULL: that's just overkill. | ||||
* | | merge 8.7 | dgp | 2018-10-18 | 1 | -82/+56 |
|\ \ | |||||
| * \ | Implementatin of TIP #515: Level Value Reform | jan.nijtmans | 2018-09-26 | 1 | -59/+31 |
| |\ \ | |||||
| | * \ | merge 8.7 | jan.nijtmans | 2018-09-22 | 1 | -1/+1 |
| | |\ \ | |||||
| | * \ \ | Merge core-8-branch | jan.nijtmans | 2018-09-08 | 1 | -4/+4 |
| | |\ \ \ | |||||
| | * | | | | TIP #515 implementation: Level Value Reform | jan.nijtmans | 2018-09-07 | 1 | -59/+31 |
| | | | | | | |||||
| * | | | | | merge 8.6 | jan.nijtmans | 2018-09-25 | 1 | -17/+19 |
| |\ \ \ \ \ | | |_|_|/ / | |/| | | / | | | |_|/ | | |/| | | |||||
| | * | | | Contributed patch from Gustaf Neumann, preventing problems where ↵ | jan.nijtmans | 2018-09-25 | 1 | -17/+19 |
| | | | | | | | | | | | | | | | | | | | | "localCachePtr" can be NULL | ||||
| * | | | | Merge 8.6 | jan.nijtmans | 2018-09-07 | 1 | -1/+1 |
| |\ \ \ \ | | |/ / / | | | | / | | |_|/ | |/| | | |||||
| | * | | small code review (duplicate code removed) | sebres | 2018-09-07 | 1 | -1/+1 |
| | | | | |||||
| * | | | merge 8.6 (segfault fix) | sebres | 2018-09-07 | 1 | -4/+4 |
| |\ \ \ | | |/ / | | | / | | |/ | |/| | |||||
| | * | closes [631b4c45df]: segfault by usage of wrong length (no string ↵ | sebres | 2018-09-07 | 1 | -4/+4 |
| | | | | | | | | | | | | representation) | ||||
| | * | Fix segmentation fault in TclOO that was noted in [16fe1b5807]. Update | pooryorick | 2018-02-14 | 1 | -11/+11 |
| | | | | | | | | | coroutine and TclOO object creation routines to use TclCreateObjCommandInNs. | ||||
| | * | Lift the restriction on command names names that begin with ":". | pooryorick | 2018-02-14 | 1 | -18/+42 |
| | | | |||||
* | | | merge 8.7 | dgp | 2018-02-06 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | merge core-8-branch | jan.nijtmans | 2017-12-19 | 1 | -1/+1 |
| |\ \ | |||||
| * \ \ | merge core-8-branch | jan.nijtmans | 2017-12-06 | 1 | -36/+12 |
| |\ \ \ | | | |/ | | |/| | |||||
| * | | | merge trunk | dgp | 2017-11-09 | 1 | -54/+42 |
| |\ \ \ | |||||
| | * | | | Modify TclCreateProc to handle arbitrary argument names, not just ASCII. | pooryorick | 2017-11-08 | 1 | -54/+42 |
| | | | | | |||||
| * | | | | Experimental branch meant to eliminate the "wideint" type, just merge it to ↵ | jan.nijtmans | 2017-10-30 | 1 | -2/+2 |
| |/ / / | | | | | | | | | | | | | a single "int" type. No effect on linux64 and similar systems, code simplification for Win64 and 32-bit system. No TIP yet, implementation ongoing. | ||||
* | | | | merge 8.7 | dgp | 2017-12-19 | 1 | -1/+1 |
|\ \ \ \ | | |_|/ | |/| | | |||||
| * | | | Make TclEnsureNamespace() MODULE_SCOPE. Also change some refCount fields ↵ | jan.nijtmans | 2017-12-19 | 1 | -1/+1 |
| | |/ | |/| | | | | | | | from type "int" to "unsigned int" for increased range. | ||||
* | | | merge 8.7 | dgp | 2017-11-29 | 1 | -36/+12 |
|\ \ \ | |/ / | |||||
| * | | Fix segmentation fault in TclOO that was noted in [16fe1b5807]. Update | pooryorick | 2017-11-19 | 1 | -11/+11 |
| | | | | | | | | | coroutine and TclOO object creation routines to use TclCreateObjCommandInNs. | ||||
| * | | Lift the restriction on command names names that begin with ":". | pooryorick | 2017-11-17 | 1 | -8/+0 |
| | | | |||||
| * | | Fix [16fe1b5807]: namespace ensemble command named ":" is mistakenly given the | pooryorick | 2017-11-17 | 1 | -18/+2 |
| | | | | | | | | | empty string as its name. | ||||
* | | | merge 8.7 | dgp | 2017-11-08 | 1 | -54/+42 |
|\ \ \ | |/ / | |||||
| * | | Modify TclCreateProc to handle arbitrary argument names, not just ASCII. | dgp | 2017-11-08 | 1 | -54/+42 |
| |/ | |||||
* | | merge trunk | dgp | 2017-04-27 | 1 | -0/+35 |
|\ \ | |/ | |||||
| * | [50750c735a] Fix broken test and stop reading uninit-but-allocated memory in ↵ | dkf | 2017-04-27 | 1 | -0/+35 |
| |\ | | | | | | | | | | zlib channel transform. | ||||
| | * | A better way of getting source file location information when disassembling. | dkf | 2017-04-22 | 1 | -0/+35 |
| | | | |||||
* | | | merge trunk | dgp | 2017-01-27 | 1 | -5/+5 |
|\ \ \ | |/ / | |||||
| * | | Some code cleanup: More internal use of size_t, less type casts (because of ↵ | jan.nijtmans | 2017-01-27 | 1 | -5/+5 |
| | | | | | | | | | | | | this). No functional changes. | ||||
* | | | merge trunk | dgp | 2016-07-18 | 1 | -21/+0 |
|\ \ \ | |/ / | |||||
| * | | Remove unmaintained disabled speculative code. | dgp | 2016-07-15 | 1 | -24/+0 |
| | | | | | | | | | Such things are for branches and history. | ||||
* | | | yup | dgp | 2016-07-13 | 1 | -1/+1 |
| | | | |||||
* | | | merge trunk | dgp | 2016-07-09 | 1 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | Micro-optimization: Use TclGetStringFromObj in stead of Tcl_GetStringFromObj ↵ | jan.nijtmans | 2016-07-08 | 1 | -3/+3 |
| |/ | | | | | | | in many places where possible. | ||||
* | | merge trunk | dgp | 2016-07-02 | 1 | -7/+5 |
|\ \ | |/ | |||||
| * | Use the utility routines to eliminate the last bit of intrusion into the | dgp | 2016-07-01 | 1 | -7/+5 |
| | | | | | | ensembleRewrite area. | ||||
* | | merge trunk | dgp | 2016-06-29 | 1 | -15/+3 |
|\ \ | |/ | |||||
| * | merge 8.6 | dgp | 2016-06-23 | 1 | -1/+1 |
| |\ | |||||
| * | | Reduce to minimum set of TclResetRewriteEnsemble() calls. | dgp | 2016-05-26 | 1 | -2/+0 |
| | | | |||||
| * | | Refactor all iPtr->ensembleRewrite setting code into TclInitRewriteEnsemble() | dgp | 2016-05-25 | 1 | -14/+3 |
| | | | | | | | | | | | | calls. This likely fixes many weird corner case bugs, and definitly makes future development and maintenance easier. | ||||
| * | | Appears that the TclInitRewriteEnsemble() routine was created with an intent | dgp | 2016-05-24 | 1 | -0/+2 |
| | | | | | | | | | to refactor, but never actually got used. Work on continuing that effort. | ||||
* | | | merge trunk | dgp | 2016-06-28 | 1 | -1/+1 |
|\ \ \ | | |/ | |/| |