summaryrefslogtreecommitdiffstats
path: root/generic/regcustom.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-09-16 13:01:42 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-09-16 13:01:42 (GMT)
commit25135fefaea603aa1f4bd521329b9a254ee76fed (patch)
tree7a748edee894c4992d6605eda10963edcf27b6e6 /generic/regcustom.h
parent6b9fd91cb423efbab3b7cab0c94f43b7da713024 (diff)
downloadtcl-25135fefaea603aa1f4bd521329b9a254ee76fed.zip
tcl-25135fefaea603aa1f4bd521329b9a254ee76fed.tar.gz
tcl-25135fefaea603aa1f4bd521329b9a254ee76fed.tar.bz2
Don't change Tcl_UniChar type when TCL_UTF_MAX == 4 (not supported anyway)
Diffstat (limited to 'generic/regcustom.h')
-rw-r--r--generic/regcustom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/regcustom.h b/generic/regcustom.h
index e258acd..5b6815c 100644
--- a/generic/regcustom.h
+++ b/generic/regcustom.h
@@ -91,7 +91,7 @@ typedef int celt; /* type to hold chr, MCCE number, or NOCELT */
#define NOCELT (-1) /* celt value which is not valid chr or MCCE */
#define CHR(c) (UCHAR(c)) /* turn char literal into chr literal */
#define DIGITVAL(c) ((c)-'0') /* turn chr digit into its value */
-#if TCL_UTF_MAX > 3
+#if TCL_UTF_MAX > 4
#define CHRBITS 32 /* bits in a chr; must not use sizeof */
#define CHR_MIN 0x00000000 /* smallest and largest chr; the value */
#define CHR_MAX 0xffffffff /* CHR_MAX-CHR_MIN+1 should fit in uchr */