Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch bug-882da1e28b Excluding Merge-Ins
This is equivalent to a diff from c28285b8a0 to c840ffc3be
|
2024-11-25
| ||
| 13:02 | Update changes.md. No need to mention [882da1] in changes.md: It was a regression after [aee9f2], wh... check-in: d8e9fe6c29 user: jan.nijtmans tags: trunk, main | |
| 12:01 | merge 8.7 check-in: b193c0db5a user: sebres tags: trunk, main | |
| 11:57 | No need to mention [882da1] in changes.md: It was a regression after [aee9f2], which never was in an... Closed-Leaf check-in: c840ffc3be user: jan.nijtmans tags: bug-882da1e28b | |
| 11:53 | Re-apply fix [aee9f2b916], which was partially lost in [24e42b9bd1] check-in: ca80b67634 user: jan.nijtmans tags: bug-882da1e28b | |
|
2024-11-24
| ||
| 21:19 | Merge 9.0 check-in: 8cc9817724 user: jan.nijtmans tags: bug-a8e4f76ce4 | |
| 20:24 | changes.md: [6ce3c0] is fixed. Add some more "known bugs" check-in: c28285b8a0 user: jan.nijtmans tags: trunk, main | |
| 19:27 | merge 8.7 check-in: 24e42b9bd1 user: sebres tags: trunk, main | |
Changes to changes.md.
| ︙ | ︙ | |||
151 152 153 154 155 156 157 | - configurable properties - `method -export`, `method -unexport` # Known bugs - [changed behaviour wrt command names, namespaces and resolution](https://core.tcl-lang.org/tcl/tktview/f14b33) - [windows dos device paths inconsistencies and missing functionality](https://core.tcl-lang.org/tcl/tktview/d8f121) - [load library (dll) from zipfs-library causes a leak in temporary folder](https://core.tcl-lang.org/tcl/tktview/a8e4f7) | < | 151 152 153 154 155 156 157 158 159 160 161 | - configurable properties - `method -export`, `method -unexport` # Known bugs - [changed behaviour wrt command names, namespaces and resolution](https://core.tcl-lang.org/tcl/tktview/f14b33) - [windows dos device paths inconsistencies and missing functionality](https://core.tcl-lang.org/tcl/tktview/d8f121) - [load library (dll) from zipfs-library causes a leak in temporary folder](https://core.tcl-lang.org/tcl/tktview/a8e4f7) - [lsearch -stride with -subindices and -inline -all gives unexpected result](https://core.tcl-lang.org/tcl/tktview/5a1aaa) - [lsearch -sorted -inline -subindices incorrect result](https://core.tcl-lang.org/tcl/tktview/bc4ac0) - ["No error" when load fails due to a missing secondary DLL](https://core.tcl-lang.org/tcl/tktview/bc4ac0) |
Changes to generic/tclClock.c.
| ︙ | ︙ | |||
3729 3730 3731 3732 3733 3734 3735 |
Tcl_SetObjResult(opts->interp, Tcl_NewStringObj(
"requested date too large to represent", TCL_AUTO_LENGTH));
Tcl_SetErrorCode(opts->interp, "CLOCK", "dateTooLarge", (char *)NULL);
return TCL_ERROR;
}
}
| | | | 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 |
Tcl_SetObjResult(opts->interp, Tcl_NewStringObj(
"requested date too large to represent", TCL_AUTO_LENGTH));
Tcl_SetErrorCode(opts->interp, "CLOCK", "dateTooLarge", (char *)NULL);
return TCL_ERROR;
}
}
/* If seconds overflows the day (no validate and "24:00" case), increase days */
if (yySecondOfDay >= SECONDS_PER_DAY + ((info->flags & CLF_TIME) && (yyHour == 24))) {
yydate.julianDay += (yySecondOfDay / SECONDS_PER_DAY);
yySecondOfDay %= SECONDS_PER_DAY;
}
/* Local seconds to UTC (stored in yydate.seconds) */
if (info->flags & CLF_ASSEMBLE_SECONDS) {
|
| ︙ | ︙ |