Tcl Source Code

Changes On Branch tip-690
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch tip-690 Excluding Merge-Ins

This is equivalent to a diff from 961fda5266 to 07c6fc8be2

2024-04-20
16:11
TIP #690: Make "clock scan -valid 1" the default check-in: f330be6e51 user: jan.nijtmans tags: trunk, main
2024-04-16
21:46
artificial "fix", illustrating that bug [28cc67a606] is related to abstract lists and co Closed-Leaf check-in: f525e7ad92 user: sebres tags: bug-28cc67a606--iter-dict-regress
20:16
Merge-mark check-in: 03f21f8b3c user: jan.nijtmans tags: trunk, main
2024-04-14
15:08
Rebase to 9.0 Closed-Leaf check-in: 07c6fc8be2 user: jan.nijtmans tags: tip-690
15:05
Merge-mark check-in: 3a964a2a3b user: jan.nijtmans tags: tip-626
14:46
Merge 8.7 check-in: 961fda5266 user: jan.nijtmans tags: trunk, main
14:31
Some int -> Tcl_Size changes check-in: 787ba0f53b user: jan.nijtmans tags: core-8-branch
2024-04-12
23:04
merge 8.7 check-in: cc297e01ed user: sebres tags: trunk, main
2024-04-01
21:33
Rebase to 9.0 check-in: 6fcec3ca33 user: jan.nijtmans tags: tip-690

Changes to generic/tclClock.c.

235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
    data->prevUsedLocale = NULL;
    data->prevUsedLocaleDict = NULL;

    data->lastBase.timezoneObj = NULL;

    memset(&data->lastTZOffsCache, 0, sizeof(data->lastTZOffsCache));

    data->defFlags = 0;

    /*
     * Install the commands.
     */

#define TCL_CLOCK_PREFIX_LEN 14 /* == strlen("::tcl::clock::") */
    memcpy(cmdName, "::tcl::clock::", TCL_CLOCK_PREFIX_LEN);







|







235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
    data->prevUsedLocale = NULL;
    data->prevUsedLocaleDict = NULL;

    data->lastBase.timezoneObj = NULL;

    memset(&data->lastTZOffsCache, 0, sizeof(data->lastTZOffsCache));

    data->defFlags = CLF_VALIDATE;

    /*
     * Install the commands.
     */

#define TCL_CLOCK_PREFIX_LEN 14 /* == strlen("::tcl::clock::") */
    memcpy(cmdName, "::tcl::clock::", TCL_CLOCK_PREFIX_LEN);