Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch core-8-6-14-rc Through [7b0150e4bf] Excluding Merge-Ins
This is equivalent to a diff from 0626cd6ddf to 7b0150e4bf
|
2024-02-09
| ||
| 14:20 | merge 8.6 check-in: ac4e370218 user: dgp tags: core-8-6-14-rc | |
|
2024-02-07
| ||
| 17:57 | 8.6 changes file finished from my side check-in: 45c1474547 user: oehhar tags: core-8-6-branch | |
| 17:51 | merge 8.6 check-in: 7b0150e4bf user: dgp tags: rc0, core-8-6-14-rc | |
| 16:59 | merge 8.6 check-in: b0ebc92e2f user: dgp tags: core-8-branch | |
| 16:51 | Update tests to accept new [history] implementation. check-in: 0626cd6ddf user: dgp tags: core-8-6-branch | |
| 13:03 | Fix [8e666d7c95]: Redefining proc ::history locks the interpreter into a tight loop check-in: 3fe9d2e419 user: jan.nijtmans tags: core-8-6-branch | |
|
2024-01-24
| ||
| 19:40 | merge 8.6 check-in: 1904ee1442 user: dgp tags: core-8-6-14-rc | |
Changes to README.md.
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # README: Tcl |
| ︙ |
Changes to generic/tcl.h.
| ︙ | |||
52 53 54 55 56 57 58 | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | - + - + | # define TCL_MAJOR_VERSION 8 #endif #if TCL_MAJOR_VERSION != 8 # error "This header-file is for Tcl 8 only" #endif #define TCL_MINOR_VERSION 6 #define TCL_RELEASE_LEVEL TCL_FINAL_RELEASE |
| ︙ |
Changes to library/init.tcl.
| ︙ | |||
12 13 14 15 16 17 18 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - + |
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# This test intentionally written in pre-7.5 Tcl
if {[info commands package] == ""} {
error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]"
}
|
| ︙ |
Changes to unix/configure.
| ︙ | |||
1331 1332 1333 1334 1335 1336 1337 | 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 | - + | TCL_VERSION=8.6 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=6 |
| ︙ |
Changes to unix/configure.in.
| ︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | - + |
/* override */ #undef PACKAGE_STRING
#endif /* _TCLCONFIG */])
])
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
|
| ︙ |
Changes to unix/tcl.spec.
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + |
# This file is the basis for a binary Tcl RPM for Linux.
%{!?directory:%define directory /usr/local}
Name: tcl
Summary: Tcl scripting language development environment
|
| ︙ |
Changes to win/configure.
| ︙ | |||
1321 1322 1323 1324 1325 1326 1327 | 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 | - + | # versions of autoconf incorrectly set SHELL to /bin/bash instead of # /bin/sh. The bash shell seems to suffer from some strange failures. SHELL=/bin/sh TCL_VERSION=8.6 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=6 |
| ︙ |
Changes to win/configure.in.
| ︙ | |||
11 12 13 14 15 16 17 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | - + | # versions of autoconf incorrectly set SHELL to /bin/bash instead of # /bin/sh. The bash shell seems to suffer from some strange failures. SHELL=/bin/sh TCL_VERSION=8.6 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=6 |
| ︙ |