diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-10 12:55:25 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-10 12:55:25 (GMT) |
commit | a5a30fa3e2b30971c18a067291c9144bdd22199f (patch) | |
tree | 998f407935686779df6023407243473782819308 /generic/tclCompile.h | |
parent | 764ef9b409175a603666871249e5991dcb7cbd50 (diff) | |
download | tcl-a5a30fa3e2b30971c18a067291c9144bdd22199f.zip tcl-a5a30fa3e2b30971c18a067291c9144bdd22199f.tar.gz tcl-a5a30fa3e2b30971c18a067291c9144bdd22199f.tar.bz2 |
TIP #597 implementation: "string is unicode" and new wtf-8 encoding
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 21a27f7..6a5faaf 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -922,8 +922,9 @@ typedef enum InstStringClassType { STR_CLASS_UPPER, /* Unicode upper-case alphabet characters. */ STR_CLASS_WORD, /* Unicode word (alphabetic, digit, connector * punctuation) characters. */ - STR_CLASS_XDIGIT /* Characters that can be used as digits in + STR_CLASS_XDIGIT, /* Characters that can be used as digits in * hexadecimal numbers ([0-9A-Fa-f]). */ + STR_CLASS_UNICODE /* Unicode characters. */ } InstStringClassType; typedef struct StringClassDesc { |