summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Bugfix [ae61a67192]. file {stat, type, size} etc. support for built-in ↵ashok2016-07-094-12/+120
| | | | | | | | | | | | | | | | special Windows files/devices like CON.
| * | | Repair some memory corruption problems in EnsembleCmdRep.dgp2016-07-081-3/+7
| |\ \ \
| | * | | Missed a cleanup line, which created a memleak.dgp_ecrdgp2016-07-071-0/+1
| | | | |
| | * | | To use a Tcl_Command token [aka (Command *)] for epoch checking, we must notdgp2016-07-071-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | permit it to be freed while we hold it or else it could be mistaken for another token allocated later that just happens to reside at the same address. (Command *) preservation machinery already exists, just need to use it. An extension facing the same problem might have to rely on command delete traces. Earlier revisions used (Namespace *) lifetime to achieve the same results, but that's really an indirect (possibly non-robust) path to achieving the proper goal. Valgrind is happy now.
* | | | | Merge core-8-6-branch: Bug [a47641a031]. TclJoinPath was calling ↵jan.nijtmans2016-07-081-3/+7
|\ \ \ \ \ | |/ / / / | | | | | | | | | | TclNewFSPathObj with a first argument that was not an absolute path. Added a check for that. Fixes Windows test failures fileSystem-1.{3,4}
| * | | | Bug [a47641a031]. TclJoinPath was calling TclNewFSPathObj with aashok2016-07-081-3/+7
| | | | | | | | | | | | | | | | | | | | first argument that was not an absolute path. Added a check for that. Fixes Windows test failures fileSystem-1.{3,4}
* | | | | Micro-optimization: Use TclGetStringFromObj in stead of Tcl_GetStringFromObj ↵jan.nijtmans2016-07-0841-177/+176
| | | | | | | | | | | | | | | | | | | | in many places where possible.
* | | | | Merge core-8-6-branch: jan.nijtmans2016-07-0716-94/+84
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | New tests to demo the remaining flaw in ensemble dispatch revisions. Itcl 4 also demonstrated these [bd7f17bce8] Revise ensemble dispatch to call TclNREvalObjv() which supports the TCL_EVAL_INVOKE Simplify all the Tcl_NRPostProc declarations Create and use a utility Tcl_NRPostProc when decr ref count of values is all that is needed Bugfix [5d7ea04580]. Treat .cmd and .ps1 files are executable on Windows
| * | | | Bugfix [5d7ea04580]. Treat .cmd and .ps1 files are executable on Windows.ashok2016-07-074-20/+25
| | | | |
| * | | | Create and use a utility Tcl_NRPostProc when decr ref count of values isdgp2016-07-063-21/+16
| | | | | | | | | | | | | | | all that is needed.
| * | | | Simplify all the Tcl_NRPostProc declarations.dgp2016-07-0610-45/+23
| | | | |
| * | | | [bd7f17bce8] Revise ensemble dispatch to call TclNREvalObjv() which supportsdgp2016-07-061-16/+10
| | |/ / | |/| | | | | | the TCL_EVAL_INVOKE flag that is needed.
| * | | New tests to demo the remaining flaw in ensemble dispatch revisions.dgp2016-07-052-1/+19
| | | | | | | | | | | | Itcl 4 also demonstrated these problems.
* | | | Fixup the ensemble rewrite conversionsjan.nijtmans2016-07-052-8/+1
|\ \ \ \ | |/ / /
| * | | Fixup the ensemble rewrite conversions (merge fork)jan.nijtmans2016-07-053-9/+2
| |\ \ \
| | * | | Fixup the ensemble rewrite conversions.core_8_6_branch_forkdgp2016-07-042-8/+1
| | | | |
* | | | | Use conventional list operations for ensemble dispatchjan.nijtmans2016-07-044-39/+258
|\ \ \ \ \ | |/ / / / | | | | | Add ability to disassemble TclOO constructors and destructors
| * | | | typo and end-of-line spacingjan.nijtmans2016-07-042-6/+6
| | | | |
| * | | | Add ability to disassemble TclOO constructors and destructors ([1493a43044] ↵dkf2016-07-042-2/+232
| |/ / / | | | | | | | | | | | | motivates)
| * | | Use conventional list operations for ensemble dispatch.dgp2016-07-031-34/+23
| | | |
* | | | [09fabeb1fd] test subdirs in sorted order.dgp2016-07-021-1/+1
|\ \ \ \ | |/ / /
| * | | [09fabeb1fd] test subdirs in sorted order.dgp2016-07-021-1/+1
| | | |
* | | | [f961d7d1dd] Repair usage message for ensemble parameters with spaces.dgp2016-07-022-10/+12
|\ \ \ \ | |/ / /
| * | | [f961d7d1dd] Repair usage message for ensemble parameters with spaces.dgp2016-07-022-10/+12
| | | |
* | | | [4402cfa58c] Rework the spell check machinery into something that will not ↵dgp2016-07-015-134/+286
|\ \ \ \ | |/ / / | | | | | | | | be foiled by value sharing.
| * | | [4402cfa58c] Rework the spell check machinery into something that will not ↵dgp2016-07-015-134/+286
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be foiled by value sharing. Valgrind is not happy with this commit. Likely suspect is the removal of the nsPtr field and checking against it. dkf tried to warn me.
| | * | The EnsembleCmdRep struct that is the internal rep for caching ensembledgp2016-07-012-22/+21
| | | | | | | | | | | | dispatches and spelling corrections can now be file static.
| | * | merge 8.6dgp2016-07-011-8/+2
| | |\ \ | | |/ / | |/| |
| | * | Add some testsdgp2016-07-011-0/+46
| | | |
| | * | [4402cfa58c] Rework the spell check machinery into something that will not bedgp2016-07-013-35/+177
| | | | | | | | | | | | foiled by value sharing.
| | * | Encapsulate the fetching of the ensemble rewrite root, used by [namespace].dgp2016-07-013-17/+38
| | | |
| | * | merge 8.6dgp2016-07-011-7/+5
| | |\ \
| | * \ \ merge 8.6dgp2016-06-2840-1209/+1421
| | |\ \ \
| | * \ \ \ merge 8.6dgp2016-05-171-9/+10
| | |\ \ \ \
| | * \ \ \ \ merge 8.6dgp2016-05-137-26/+117
| | |\ \ \ \ \
| | * | | | | | Don't see why the intrep should make and keep copies of things alreadydgp2016-05-123-34/+17
| | | | | | | | | | | | | | | | | | | | | | | | stored in the hash table.
| | * | | | | | The "ensembleCommand" Tcl_ObjType has no need for an UpdateString routine.dgp2016-05-121-31/+1
| | | | | | | | | | | | | | | | | | | | | | | | It is entirely a caching type. No "pure" value can exist.
| | * | | | | | Remove the nsPtr field from the EnsembleCmdRep struct. Cannot see anydgp2016-05-122-10/+1
| | | | | | | | | | | | | | | | | | | | | | | | justification for keeping it (can get via token), and test suite doesn't care.
* | | | | | | | Make test-case "for.test" pass, regardless of end-of-line spacingjan.nijtmans2016-07-011-19/+19
| | | | | | | |
* | | | | | | | merge core-8-6-branchjan.nijtmans2016-07-011-8/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | Use same internal representation for unicode strings in test-cases than in ↵jan.nijtmans2016-07-011-8/+2
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | reality, in order to prevent surprises.
* | | | | | | Disable special hacks for Itcl 3 ensemble error message generation.dgp2016-07-012-1/+14
| | | | | | | | | | | | | | | | | | | | | Migration paths are in place to bring this to an end.
* | | | | | | Use the utility routines to eliminate the last bit of intrusion into the ↵dgp2016-07-011-7/+5
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | | | | | | | | ensembleRewrite area.
| * | | | | | Use the utility routines to eliminate the last bit of intrusion into thedgp2016-07-011-7/+5
| | |_|_|/ / | |/| | | | | | | | | | ensembleRewrite area.
* | | | | | Simplify use of "struct" keyword in many places.jan.nijtmans2016-06-3021-36/+36
| | | | | |
* | | | | | Remove Tcl_Main() function, since it's no longer being used: It has been a ↵jan.nijtmans2016-06-291-18/+5
| | | | | | | | | | | | | | | | | | | | | | | | macro already for ages.
* | | | | | Eliminate internal use of TCL_STORAGE_CLASS, as it will be gone in 9.0 anywayjan.nijtmans2016-06-298-84/+22
| | | | | |
* | | | | | Tcl_SetVar -> Tcl_SetVar2 and comparable replacements, eliminating functions ↵jan.nijtmans2016-06-2916-54/+58
| | | | | | | | | | | | | | | | | | | | | | | | which are deprecated.
* | | | | | Route all ensemble rewrite activity through a few utility routines.dgp2016-06-289-137/+64
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Route all ensemble rewrite activity through a few utility routines.dgp2016-06-289-137/+64
| |\ \ \ \ \