Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | merge 8.6 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
22e9ad26b23ff59e5e939d2321a6fda2 |
User & Date: | dgp 2019-05-17 13:43:13.426 |
Context
2019-05-17
| ||
17:19 | Change .ext extension into .aaa in winDialog.test since some corporate policies forbid .ext extension. See https://core.tcl-lang.org/tcl/tktview/cc74e50996e20cbb6a851087b36c52eb75526aa4 check-in: bd9993e0 user: fvogel tags: trunk | |
13:43 | merge 8.6 check-in: 22e9ad26 user: dgp tags: trunk | |
13:42 | Migrate away from TCL_INTERP_DESTROYED (TIP 543). check-in: 1c5f7e98 user: dgp tags: core-8-6-branch | |
12:39 | In Aqua, protect against double release of clipping regions. check-in: d0ddc7ca user: culler tags: trunk | |
Changes
Changes to generic/ttk/ttkTrace.c.
︙ | ︙ | |||
30 31 32 33 34 35 36 | const char *name2, /* (unused) */ int flags) /* Information about what happened. */ { Ttk_TraceHandle *tracePtr = clientData; const char *name, *value; Tcl_Obj *valuePtr; | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | const char *name2, /* (unused) */ int flags) /* Information about what happened. */ { Ttk_TraceHandle *tracePtr = clientData; const char *name, *value; Tcl_Obj *valuePtr; if (Tcl_InterpDeleted(interp)) { return NULL; } name = Tcl_GetString(tracePtr->varnameObj); /* * If the variable is being unset, then re-establish the trace: |
︙ | ︙ |