Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make read and write operations on Tcl_Var handles available in tclInt API. | dkf | 2017-06-08 | 1 | -28/+247 |
|\ | |||||
| * | Expose some of the core variable access APIs. dkf_expose_ptrgetvar_8_6 | dkf | 2017-06-06 | 1 | -28/+247 |
| | | | | | | (Cherrypick from [b4dfc30083]) | ||||
* | | Addendum to previous commit: If compiled with TCL_NO_DEPRECATED, remove a ↵ | jan.nijtmans | 2017-03-21 | 1 | -0/+2 |
| | | | | | | | | few more stub entries which are not used any more. | ||||
* | | If compiled with TCL_NO_DEPRECATED, remove some more stub entries which are ↵ | jan.nijtmans | 2017-03-20 | 1 | -7/+9 |
| | | | | | | | | not used any more. | ||||
* | | compatability -> compatibility | jan.nijtmans | 2016-12-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | compatability -> compatibility | jan.nijtmans | 2016-12-01 | 1 | -1/+1 |
| |\ | |||||
| | * | compatability -> compatibility | jan.nijtmans | 2016-12-01 | 1 | -1/+1 |
| | | | |||||
* | | | Revert b98ee56376. The "bug" fixed was documented behavior. | dgp | 2016-09-09 | 1 | -33/+16 |
| | | | |||||
* | | | Attempt to fix [7f02ff1efa]. Make trace-18.1 fail. Suspect test is an | dgp | 2016-09-07 | 1 | -16/+33 |
| | | | | | | | | | experiment that preserves the bug. | ||||
* | | | [4dbdd9af14] Plug mem leak when var unset trace re-creates namespace var. ↵ | dgp | 2016-09-07 | 1 | -5/+19 |
|\ \ \ | |/ / | | | | | | | Thanks mr_calvin for report and fix. | ||||
| * | | [4dbdd9af14] Plug mem leak when var unset trace re-creates namespace var. ↵ | dgp | 2016-09-07 | 1 | -5/+19 |
| |\ \ | | |/ | | | | | | | Thanks mr_calvin for report and fix. | ||||
| | * | Improve the comments and add a test.bug_4dbdd9af14 | dgp | 2016-09-07 | 1 | -2/+11 |
| | | | |||||
| | * | [4dbdd9af14] Proposed fix for mem leak. | dgp | 2016-09-06 | 1 | -1/+6 |
| | | | |||||
| | * | Improve code 'quality' by fixing some harmless clang/cppcheck warnings. ↵ | jan.nijtmans | 2016-01-22 | 1 | -31/+51 |
| | | | | | | | | | | | | Thanks to Gustaf Neumann. No change in functionality. | ||||
* | | | Don't ever allow UTF-8 sequences of more than 4 characters to be generated ↵ | jan.nijtmans | 2016-08-30 | 1 | -2/+2 |
|\ \ \ | |/ / | | | | | | | | | | or parsed, even when TCL_UTF_MAX>4: According to current Unicode standard, a byte string of >4 characters can never form a single UTF-8 character. And a few minor micro-optimizations related to UTF-8 handling. | ||||
* | | | Streamline TclObjLookupVarEx | dgp | 2016-07-20 | 1 | -14/+18 |
| | | | |||||
* | | | Use strchr() to parse array variable syntax. | dgp | 2016-07-20 | 1 | -43/+15 |
| | | | |||||
* | | | Factor out common prologue. | dgp | 2016-07-19 | 1 | -128/+48 |
| | | | |||||
* | | | merge 8.6 | dgp | 2016-07-19 | 1 | -4/+0 |
|\ \ \ | |/ / | |||||
| * | | Remove outdated comment. | dgp | 2016-07-19 | 1 | -4/+0 |
| | | | |||||
* | | | [0363f0146c] Fix [array startsearch] id handling to support var name variations | dgp | 2016-07-19 | 1 | -140/+31 |
| | | | |||||
* | | | Plug memory leak created in recent variable Tcl_ObjType reform. | dgp | 2016-07-14 | 1 | -8/+1 |
| | | | |||||
* | | | merge 8.6 | dgp | 2016-07-09 | 1 | -34/+21 |
|\ \ \ | |/ / | |||||
| * | | Expose the AVOID_RESOLVERS flag to [namespace upvar] implementations, which ↵bug_1493a43044 | dkf | 2016-07-07 | 1 | -34/+21 |
| | | | | | | | | | | | | seem to need it. | ||||
* | | | [c95b9fc0e3] Make errorcodes out of level parsing more consistent. | dkf | 2016-06-22 | 1 | -1/+2 |
|\ \ \ | |/ / | |||||
| * | | [c95b9fc0e3] Make errorcodes out of level parsing more consistent. | dkf | 2016-06-22 | 1 | -1/+2 |
| | | | |||||
* | | | [d1f55451c6] Remove unnecessary panic routines. | dgp | 2016-04-11 | 1 | -28/+2 |
| | | | |||||
* | | | Revise "parsedVarName" Tcl_ObjType to eliminated unnecessary parts and | dgp | 2016-04-04 | 1 | -63/+9 |
|\ \ \ | |/ / |/| | | to reduce string copying. | ||||
| * | | There's a "parsedVarName" Tcl_ObjType that remembers how a variable namedgp_revise_parsedvarnametype | dgp | 2016-03-28 | 1 | -11/+34 |
|/ / | | | | | | | | | | | | | | | | | breaks down into the name of an array and the name of an element. It has been storing them in an intrep as a Tcl_Obj holding the array name and an allocated string holding the element name. This branch revises the intrep strategy to use Tcl_Obj's to hold both parts. This reduces copying and seems to simplify the code. Also "nulled out" the UpdateStringProc for the type which can never be called. I think this is a better answer, but I'd like any other informed opinions. | ||||
* | | Extra safety against cyclesbug_80304238ac | dgp | 2016-03-01 | 1 | -1/+2 |
| | | |||||
* | | [80304238ac] Candidate fix for memleak due to RC cycle. | dgp | 2016-02-26 | 1 | -5/+7 |
| | | |||||
* | | Align comment. Remove some end-of-line spacing. No functional changes. | jan.nijtmans | 2015-09-28 | 1 | -5/+5 |
|\ \ | |/ | |||||
* | | micro-opt of hash lookups found by drh | Miguel Sofer | 2015-09-22 | 1 | -6/+5 |
| | | |||||
* | | remove potential crash detected by Coverity (it is a should-never-happen thing) | Miguel Sofer | 2015-08-05 | 1 | -1/+1 |
| | | |||||
* | | [9bad630c31] Prevent read outside of buffer bounds. | dgp | 2015-07-15 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | [9bad630c31] Prevent read outside of buffer bounds. | dgp | 2015-07-15 | 1 | -1/+1 |
| | | |||||
* | | remove code that was ifdef'ed out for ages (ENABLE_NS_VARNAME_CACHING), has ↵ | Miguel Sofer | 2015-07-02 | 1 | -163/+0 |
| | | | | | | | | zero hope of being revived and got out of sync anyway | ||||
* | | Consistancy in refcount management. | jan.nijtmans | 2015-06-30 | 1 | -2/+2 |
| | | |||||
* | | Use twoPtrValue in stead of ptrAndLongRep for implementation of some ↵ | jan.nijtmans | 2015-06-30 | 1 | -17/+16 |
| | | | | | | | | | | internal Obj types. On most platforms this doesn't make a difference, as (void *) and (long) generially have the same size. The only exception where it makes a difference is win64, as we can now store 64 bits in this field in stead of only 32 bits, exactly what the processor is optimized for. | ||||
* | | Protect against extension variable resolvers that fail to play by the ↵ | dgp | 2015-01-29 | 1 | -1/+1 |
|\ \ | |/ | | | | | post-Var Reform rules. | ||||
| * | Protect against extension variable resolvers that fail to play by | dgp | 2015-01-29 | 1 | -1/+2 |
| | | | | | | the post-Var Reform rules. | ||||
* | | [2486824] Improve error message; not all that upvars is an upvar. | dkf | 2014-09-10 | 1 | -5/+4 |
|\ \ | |/ | |||||
| * | [2486824] Improve error message; not all that upvars is an upvar. | dkf | 2014-09-10 | 1 | -5/+4 |
| | | |||||
* | | [7368d225a6] Extend the auto-cleanup of zero ref count values passed in to | dgp | 2014-07-10 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | the Tcl_*SetVar*() family of routines to cover the missing case where the flags value of TCL_APPEND_VALUE is passed in alone. *** POTENTIAL INCOMAPTIBILITY*** | ||||
| * | [7368d225a6] Extend the auto-cleanup of zero ref count values passed in | dgp | 2014-07-10 | 1 | -0/+3 |
| | | | | | | | | | | to the Tcl_*SetVar*() family of routines to cover the missing case where the flags value of TCL_APPEND_VALUE is passed in alone. *** POTENTIAL INCOMAPTIBILITY*** | ||||
| * | Implement many Tcl_*Var* functions and Tcl_GetIndexFromObj as ↵ | jan.nijtmans | 2013-04-19 | 1 | -0/+4 |
| |\ | | | | | | | | | | (faster/stack-saving) macros around resp their Tcl_*Var*2 equivalent and Tcl_GetIndexFromObjStruct | ||||
| | * | Implement many Tcl_*Var* functions and Tcl_GetIndexFromObj as ↵ | jan.nijtmans | 2013-04-19 | 1 | -0/+7 |
| | | | | | | | | | | | | (faster/stack-saving) macros around resp their Tcl_*Var*2 equivalent and Tcl_GetIndexFromObjStruct | ||||
| | * | Tcl_HashStats does not return a CONST | jan.nijtmans | 2011-09-06 | 1 | -1/+1 |
| | | | |||||
| | * | fix for [Bug 2662380], crash caused by appending to a variable with a write ↵ | mig | 2011-04-13 | 1 | -1/+2 |
| | | | | | | | | | | | | trace that unsets it | ||||
* | | | [219226]: Rewrote how ::env is synchronized to the environment so it no longer | dkf | 2013-09-27 | 1 | -0/+47 |
| | | | | | | | | | | | | smashes the array or its elements flat, This affects traces on env, links to env, and iterations over env: it makes them work as naïvely expected. |