summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-05-07 07:42:03 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-05-07 07:42:03 (GMT)
commit97b08c9a24dd40233c45c0637be7370972ec7b0c (patch)
tree0a4f179c562b1722721777ac589d7b98a8457f3f /generic/tcl.h
parentb97b608974fe24725a6d53807d9b11a3b9c7f401 (diff)
parent5500074eff2f8cd05b593f4dcac0aecd23e00b94 (diff)
downloadtcl-97b08c9a24dd40233c45c0637be7370972ec7b0c.zip
tcl-97b08c9a24dd40233c45c0637be7370972ec7b0c.tar.gz
tcl-97b08c9a24dd40233c45c0637be7370972ec7b0c.tar.bz2
merge 8.7
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 615b598..c2013c3 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -1992,9 +1992,9 @@ 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
- * 4, then Tcl_UniChar must be 2-bytes in size (UCS-2) (the default). If 6,
+ * Unicode character in UTF-8. The valid values are 4 and 6
+ * (or perhaps 1 if we want to support a non-unicode enabled core). If 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
* recommended. It works for the core, but most extensions expect UCS-2.