diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-02 21:13:03 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-02 21:13:03 (GMT) |
commit | 4c72498e39acb8c9846f67f0f054ba5246418310 (patch) | |
tree | 4bb33e3480486ac9a1f564c9d448c909aef98507 /tools/uniClass.tcl | |
parent | 2427ef7d10eb75c0aa2ef238efa3002cba516e88 (diff) | |
parent | bc4fa40ab732d394d45a52b5f4d7581a80d1b943 (diff) | |
download | tcl-4c72498e39acb8c9846f67f0f054ba5246418310.zip tcl-4c72498e39acb8c9846f67f0f054ba5246418310.tar.gz tcl-4c72498e39acb8c9846f67f0f054ba5246418310.tar.bz2 |
[Frq 3464401] Support Unicode 6.1
Diffstat (limited to 'tools/uniClass.tcl')
-rw-r--r-- | tools/uniClass.tcl | 4 |
1 files changed, 2 insertions, 2 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 |