Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch bug-itcl-1b2865 Excluding Merge-Ins
This is equivalent to a diff from 24cf682242 to e45c8a81d3
|
2016-11-15
| ||
| 13:32 | See Itcl Bug [1b28657c0e]. Make methodNameType honor the Tcl_ObjType contract. check-in: 9f5d17b078 user: dkf tags: core-8-6-branch | |
| 13:31 | Slightly more efficient version as this is Hot Path code. Closed-Leaf check-in: e45c8a81d3 user: dkf tags: bug-itcl-1b2865 | |
|
2016-11-14
| ||
| 17:01 | See Itcl Bug [1b28657c0e]. The methodNameType fails to honor the Tcl_ObjType contract. Need dkf revi... check-in: 90eeca888c user: dgp tags: bug-itcl-1b2865 | |
| 14:25 | Better fix for the usability of TCL_NO_DEPRECATED on MacOSX check-in: e041d7c814 user: jan.nijtmans tags: core-8-6-branch | |
|
2016-11-12
| ||
| 11:19 | Merge tzdata2016i from IETF check-in: cbce1a9dea user: venkat tags: trunk | |
| 11:19 | Merge tzdata2016i from IETF check-in: 24cf682242 user: venkat tags: core-8-6-branch | |
| 11:18 | Update to tzdata2016i from IETF check-in: 8b0d120b2a user: venkat tags: core-8-5-branch | |
|
2016-11-11
| ||
| 10:55 | Fix [79614fb8b61983ac8ef30ea8752c310465798fc7|79614fb8b6]: "glob", "encoding system" and encoding-fr... check-in: 56afef9ae8 user: jan.nijtmans tags: core-8-6-branch | |
Changes to generic/tclOOCall.c.
| ︙ | |||
175 176 177 178 179 180 181 182 183 184 185 186 187 188 | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | + |
static inline void
StashCallChain(
Tcl_Obj *objPtr,
CallChain *callPtr)
{
callPtr->refCount++;
TclGetString(objPtr);
TclFreeIntRep(objPtr);
objPtr->typePtr = &methodNameType;
objPtr->internalRep.twoPtrValue.ptr1 = callPtr;
}
void
TclOOStashContext(
|
| ︙ |