From a9377a35b758968f62531271a5d5978ee9d8645a Mon Sep 17 00:00:00 2001 From: dkf Date: Mon, 5 Jun 2023 11:12:08 +0000 Subject: Added note about how some commands are mainly for Tk --- doc/library.n | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/library.n b/doc/library.n index 64252f3..fb43364 100644 --- a/doc/library.n +++ b/doc/library.n @@ -248,6 +248,9 @@ For example, to print the contents of the \fBtcl_platform\fR array, do: \fBparray\fR tcl_platform .CE .RE +.SS "WORD BOUNDARY HELPERS" +.PP +These procedures are mainly used internally by Tk. .TP \fBtcl_endOfWord \fIstr start\fR . -- cgit v0.12 From 96c8069270e5e13c9f963decd8c7f17f3df54a00 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Thu, 8 Jun 2023 11:59:30 +0000 Subject: (cherry-pick): Added note about how some commands are mainly for Tk --- doc/library.n | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/library.n b/doc/library.n index 87f13bd..f14e8e0 100644 --- a/doc/library.n +++ b/doc/library.n @@ -203,6 +203,9 @@ matching rules of \fBstring match\fR) and their values if \fIpattern\fR is given. \fIArrayName\fR must be an array accessible to the caller of \fBparray\fR. It may be either local or global. +.SS "WORD BOUNDARY HELPERS" +.PP +These procedures are mainly used internally by Tk. .TP \fBtcl_endOfWord \fIstr start\fR Returns the index of the first end-of-word location that occurs after -- cgit v0.12 From 3c8ac03074fc97f5cacb7163698d37faa4c2f07e Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Tue, 13 Jun 2023 06:05:02 +0000 Subject: Specify implicit "-profile tcl8" in encoding-24.4 testcase --- tests/encoding.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/encoding.test b/tests/encoding.test index eb91a1d..c404eb0 100644 --- a/tests/encoding.test +++ b/tests/encoding.test @@ -765,7 +765,7 @@ test encoding-24.3 {EscapeFreeProc on open channels} {stdio} { } [list 3 "乎乞也 (\\u4E4E\\u4E5E\\u4E5F)"] test encoding-24.4 {Parse valid or invalid utf-8} { - string length [encoding convertfrom utf-8 "\xC0\x80"] + string length [encoding convertfrom -profile tcl8 utf-8 "\xC0\x80"] } 1 test encoding-24.5 {Parse valid or invalid utf-8} { string length [encoding convertfrom -profile tcl8 utf-8 "\xC0\x81"] -- cgit v0.12