diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-08-23 16:56:24 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-08-23 16:56:24 (GMT) |
commit | 4408536018394acb35a880248f28f608650ca736 (patch) | |
tree | 69e158c6597abba3c619a07b9c28256b3f4c338d /generic/tcl.h | |
parent | 8f0801033282ae8543f09d6e82509d8e1ef9122e (diff) | |
parent | 813e29b286e73dc7e4d3a40eddb9aff2988689ad (diff) | |
download | tcl-4408536018394acb35a880248f28f608650ca736.zip tcl-4408536018394acb35a880248f28f608650ca736.tar.gz tcl-4408536018394acb35a880248f28f608650ca736.tar.bz2 |
Merge 8.6
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 83dfa27..d0636ce 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -2223,11 +2223,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 are 3 and 4 - * (or perhaps 1 if we want to support a non-unicode enabled core). If 3, - * then Tcl_UniChar must be 2-bytes in size (UTF-16) (the default). If > 3, - * then Tcl_UniChar must be 4-bytes in size (UCS-4). At this time UTF-16 mode - * is the default and recommended mode. + * Unicode character in UTF-8. The valid values are 3 and 4. If > 3, + * then Tcl_UniChar must be 4-bytes in size (UCS-4) (the default for the + * Tcl core). If == 3, then Tcl_UniChar must be 2-bytes in size (UTF-16). */ #ifndef TCL_UTF_MAX |