diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-09-16 13:01:42 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-09-16 13:01:42 (GMT) |
| commit | ca0d0b653f7602193c37269c6cfb2ec6bba4cd0d (patch) | |
| tree | 7a748edee894c4992d6605eda10963edcf27b6e6 /generic/tcl.h | |
| parent | a898b5522b0ae64bcc1b7e69e3bc2cf016121975 (diff) | |
| download | tcl-ca0d0b653f7602193c37269c6cfb2ec6bba4cd0d.zip tcl-ca0d0b653f7602193c37269c6cfb2ec6bba4cd0d.tar.gz tcl-ca0d0b653f7602193c37269c6cfb2ec6bba4cd0d.tar.bz2 | |
Don't change Tcl_UniChar type when TCL_UTF_MAX == 4 (not supported anyway)
Diffstat (limited to 'generic/tcl.h')
| -rw-r--r-- | generic/tcl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index bd720ff..ec64cac 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -2244,7 +2244,7 @@ typedef struct Tcl_Parse { * This represents a Unicode character. Any changes to this should * also be reflected in regcustom.h. */ -#if TCL_UTF_MAX > 3 +#if TCL_UTF_MAX > 4 /* * unsigned int isn't 100% accurate as it should be a strict 4-byte * value (perhaps wchar_t). 64-bit systems may have troubles. The |
