summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-08-23 15:31:20 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-08-23 15:31:20 (GMT)
commitea37e7d256f526f2b60023754da3985b7e9842cc (patch)
treec540029eb295638fe553f09279f555efed641d42 /generic/tcl.h
parenta53c12b3b5edfdbae0579747d279a4e98d601b07 (diff)
downloadtcl-ea37e7d256f526f2b60023754da3985b7e9842cc.zip
tcl-ea37e7d256f526f2b60023754da3985b7e9842cc.tar.gz
tcl-ea37e7d256f526f2b60023754da3985b7e9842cc.tar.bz2
Backport [bae0d30c7f5047a4]. Don't suggest that TCL_UTF_MAX=1 might work any more. See: [457523]
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 2b6d8b7..01eafba 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -2186,8 +2186,7 @@ typedef struct Tcl_EncodingType {
/*
* The maximum number of bytes that are necessary to represent a single
- * Unicode character in UTF-8. The valid values should be 3, 4 or 6
- * (or perhaps 1 if we want to support a non-unicode enabled core). If 3 or
+ * Unicode character in UTF-8. The valid values should be 3, 4 or 6. If 3 or
* 4, then Tcl_UniChar must be 2-bytes in size (UCS-2) (the default). If 6,
* then Tcl_UniChar must be 4-bytes in size (UCS-4). At this time UCS-2 mode
* is the default and recommended mode. UCS-4 is experimental and not