summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2024-02-09 14:20:21 (GMT)
committerdgp <dgp@users.sourceforge.net>2024-02-09 14:20:21 (GMT)
commit9ba9faaf0793fc322bef2bd6145f75f7d46b5338 (patch)
tree5c9f2888dd444be380b2ff5bb6af6c18d5332c49
parentf6dc0d960932ff9d6b43b0272b33fc48dfc1fe47 (diff)
parentfb08c2506079eeced629e5353009cc2b168c04c2 (diff)
downloadtcl-9ba9faaf0793fc322bef2bd6145f75f7d46b5338.zip
tcl-9ba9faaf0793fc322bef2bd6145f75f7d46b5338.tar.gz
tcl-9ba9faaf0793fc322bef2bd6145f75f7d46b5338.tar.bz2
merge 8.6
-rw-r--r--changes48
-rw-r--r--doc/clock.n4
-rw-r--r--generic/tclObj.c2
3 files changed, 37 insertions, 17 deletions
diff --git a/changes b/changes
index e8bd917..7f60826 100644
--- a/changes
+++ b/changes
@@ -9224,42 +9224,62 @@ Many code fixes to avoid overflow or undefined behavior. Thanks chrstphrchvz.
2023-07-05 (bug) [66ffaf] incomplete double byte encoding sequences ignored like
in [encoding convertfrom gb12345 x] (nadkarni)
-2023-08-29 Update zlib to version 1.3
+2023-07-26 (rfe) [c54e4a] fork multithreading performance by using vfork/spawn
+ when supported (neumann)
+
+2023-08-17 TIP #662: Tcl_VarEval is not depreciated any more (nijtmans)
+
+2023-08-29 Update zlib to version 1.3 (nijtmans)
+
+2023-09-04 Update libtommath to version 1.2.1 (nijtmans)
2023-09-05 (bug) [60cacf] Fix tclvfs tkt Segmentation Fault at interpreter exit
when tclvfs loaded.
2023-09-05 (bug) [b5ac3e] Tcl_GetUniChar reads beyond string length for ASCII
- strings
+ strings (nadkarni)
-2023-09-06 (bug) [d3465c] Update install-sh to version "2020-11-14.01".
+2023-09-06 (bug) [d3465c] Update install-sh to version 2020-11-14.01 (nijtmans)
-2023-09-08 Unicode 15.1
+2023-09-08 Unicode 15.1 (nijtmans)
+
+2023-09-12 Remove option utf16 from win/makefile.vc (nijtmans)
2023-09-13 (bug) [43b065] MS Windows: files with emojis are found by glob but
- not recognized by file exists or open
+ not recognized by file exists or open (nijtmans)
2023-09-13 (bug) [a1f11d] VC6 compilation error of core-8-6-branch: error C2065:
- 'int16_t' : undeclared identifier
+ 'int16_t' : undeclared identifier (nijtmans)
2023-09-14 (bug) [00655c] ClockGetdatefieldsObjCmd(): avoid signed integer
- overflow and platform-dependent behavior
+ overflow and platform-dependent behavior (nijtmans)
-2023-10-01 (bug) [7b3167] tclOO.c: initialize fakeObject.refCount
+2023-10-01 (bug) [7b3167] tclOO.c: initialize fakeObject.refCount (nijtmans)
2023-10-04 (bug) [7371b6] AddressSanitizer use-after-return detection breaks NRE
- ests, coroutines
+ tests, coroutines (nijtmans)
-2023-12-06 (bug) [db4f28] fixes SF by BO in ReadChars (and Tcl_ReadChars with
- append)
+2023-11-30 (bug) [fb2fa9],[21b062] reallow [exec %var%] on MS-Windows. It was
+ forbidden in 8.6.13 (brester)
2023-12-30 (rfe) [0ac9d0] Don't call getsockname(2) in Tcl_MakeFileChannel(3)
unless absolutely necessary. Permits better constraining of Tcl/tclsh via
OpenBSD's pledge(2) or similar mechanisms. Minor rewrite.
-2024-01-24 [db4f28] Cure performance issues by 8.6.13 bugfix for channel read
- with large data (brester)
+2024-01-24 [db4f28] segfault when Tcl_ReadChars is called with unicode object
+ (brester)
2024-01-11 (bug) [fd27ad] doc change of Tcl_PkgRequire & friends: version string
specification refers to "package require".
-- Released 8.6.14, Jan ??, 2024 - details at https://core.tcl-lang.org/tcl/ -
+2024-01-27 (bug) [16e25e] error for [tcl_startOfPreviousWord string end-1]
+ (nijtmans)
+
+2024-01-29 Update to zlib 1.3.1 (nijtmans)
+
+2024-02-05 fix/document Tcl_ObjPrintf with "ll" modifier (nijtmans)
+
+2024-02-06 [8e666d] endless loop when redefining proc ::history (nash)
+
+2024-02-06 [86b3c1] endless loop when ::unknown is moved into a namespace (nash)
+
+- Released 8.6.14, Feb ??, 2024 - details at https://core.tcl-lang.org/tcl/ -
diff --git a/doc/clock.n b/doc/clock.n
index 3c408fc..3580798 100644
--- a/doc/clock.n
+++ b/doc/clock.n
@@ -909,13 +909,13 @@ an error may result if these years are used.
.TP
\fIISO 8601 point-in-time\fR
An ISO 8601 point-in-time specification, such as
-.QW \fICCyymmdd\fBT\fIhhmmss\fR,
+.QW "\fICCyymmdd\fBT\fIhhmmss\fR" ,
where \fBT\fR is the literal
.QW T ,
.QW "\fICCyymmdd hhmmss\fR" ,
.QW \fICCyymmdd\fBT\fIhh:mm:ss\fR ,
or
-.QW \fICCyy-mm-dd\fBT\fIhh:mm:ss\fR.
+.QW "\fICCyy-mm-dd\fBT\fIhh:mm:ss\fR" .
Note that only these four formats are accepted.
The command does \fInot\fR accept the full range of point-in-time
specifications specified in ISO8601. Other formats can be recognized by
diff --git a/generic/tclObj.c b/generic/tclObj.c
index 4abfa49..1b57e71 100644
--- a/generic/tclObj.c
+++ b/generic/tclObj.c
@@ -2009,7 +2009,7 @@ ParseBoolean(
char lowerCase[6];
const char *str = TclGetStringFromObj(objPtr, &length);
- if ((length == 0) || (length > 5)) {
+ if ((length < 1) || (length > 5)) {
/*
* Longest valid boolean string rep. is "false".
*/