Skip to content

Commit 0735721

Browse files
author
jan.nijtmans
committed
Update changes.md
1 parent be14608 commit 0735721

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

changes.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,17 @@ to the userbase.
1414
- [$interp eval $lambda] after [eval $lambda] or vice versa fails](https://core.tcl-lang.org/tcl/tktview/98006f)
1515
- [tcl::mathfunc::isunordered inconsistency with some integer values](https://core.tcl-lang.org/tcl/tktview/67d5f7)
1616
- [test lseq hangs with -Os](https://core.tcl-lang.org/tcl/tktview/d2a3c5)
17+
- [exec does not handle app execution aliases on Windows](https://core.tcl-lang.org/tcl/tktview/4f0b57)
18+
- [auto_execok does not find several built-in cmd commands](https://core.tcl-lang.org/tcl/tktview/4e2c8b)
19+
- [Panic "Buffer Underflow, BUFFER_PADDING not enough"](https://core.tcl-lang.org/tcl/tktview/73bb42)
20+
- [MS-VS build system: pckIndex.tcl when building for 9 misses "t" for TCL 8.6 part](https://core.tcl-lang.org/tcl/tktview/a77029)
21+
- [clock format -locale does not look up locale children if parent locale used first](https://core.tcl-lang.org/tcl/tktview/2c0f49)
1722

1823
# Incompatibilities
1924
- No known incompatibilities with the Tcl 9.0.0 public interface.
2025

2126
# Updated bundled packages, libraries, standards, data
22-
- sqlite3 3.48.0
27+
- sqlite3 3.49.1
2328
- tzdata 2025a
2429

2530
Release Tcl 9.0.1 arises from the check-in with tag `core-9-0-1`.

generic/tclCmdMZ.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4507,7 +4507,7 @@ Tcl_TimeRateObjCmd(
45074507
* considering last known iteration growth factor.
45084508
*/
45094509
threshold = (Tcl_WideUInt)(stop - middle) * TR_SCALE;
4510-
/*
4510+
/*
45114511
* Estimated count of iteration til the end of execution.
45124512
* Thereby 2.5% longer execution time would be OK.
45134513
*/

tests/exec.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -752,9 +752,9 @@ test exec-bug-4f0b5767ac {exec App Execution Alias} -constraints haveWinget -bod
752752
} -result "Windows Package Manager*" -match glob
753753

754754
foreach cmdBuiltin {
755-
assoc call cd cls color copy date del dir echo
756-
erase exit ftype for if md mkdir mklink move path
757-
pause prompt rd ren rename rmdir set start time
755+
assoc call cd cls color copy date del dir echo
756+
erase exit ftype for if md mkdir mklink move path
757+
pause prompt rd ren rename rmdir set start time
758758
title type ver vol
759759
} {
760760
test auto_execok-$cmdBuiltin-1.0 "auto_execok $cmdBuiltin" \

0 commit comments

Comments
 (0)