summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-02-02 21:13:49 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-02-02 21:13:49 (GMT)
commitfa0531abb9f068fade326d63b0979d787fd7e54a (patch)
treed2dbe02975bd0c001903ca86040300ff58af641b /tools
parent9fa9402452dda28e0e91a33614fb63edb0d97e36 (diff)
parentda5f0a7d00189cc96fa27b38edfa994ff3db3f7c (diff)
downloadtcl-fa0531abb9f068fade326d63b0979d787fd7e54a.zip
tcl-fa0531abb9f068fade326d63b0979d787fd7e54a.tar.gz
tcl-fa0531abb9f068fade326d63b0979d787fd7e54a.tar.bz2
[Frq 3464401] Support Unicode 6.1
Diffstat (limited to 'tools')
-rw-r--r--tools/uniClass.tcl4
-rw-r--r--tools/uniParse.tcl2
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/uniClass.tcl b/tools/uniClass.tcl
index db5e8c9..32b40e9 100644
--- a/tools/uniClass.tcl
+++ b/tools/uniClass.tcl
@@ -20,7 +20,7 @@ proc emitRange {first last} {
set extranges 1
set numranges 0
set ranges [string trimright $ranges " \n\r\t,"]
- append ranges "\n#if MAX_UTF_CHAR > 4\n ,"
+ append ranges "\n#if TCL_UTF_MAX > 4\n ,"
}
append ranges [format "{0x%x, 0x%x}, " \
$first $last]
@@ -33,7 +33,7 @@ proc emitRange {first last} {
set extchars 1
set numchars 0
set chars [string trimright $chars " \n\r\t,"]
- append chars "\n#if MAX_UTF_CHAR > 4\n ,"
+ append chars "\n#if TCL_UTF_MAX > 4\n ,"
}
append chars [format "0x%x, " $first]
incr numchars
diff --git a/tools/uniParse.tcl b/tools/uniParse.tcl
index baf8a4b..e33b3c7 100644
--- a/tools/uniParse.tcl
+++ b/tools/uniParse.tcl
@@ -337,7 +337,7 @@ static const int groups\[\] = {"
puts $f $line
puts -nonewline $f "};
-#if UTF_MAX_LEN > 3
+#if TCL_UTF_MAX > 3
# define UNICODE_OUT_OF_RANGE(ch) (((ch) & 0x1fffff) >= [format 0x%x $next])
#else
# define UNICODE_OUT_OF_RANGE(ch) (((ch) & 0x1f0000) != 0)