diff options
Diffstat (limited to 'tools/uniParse.tcl')
-rw-r--r-- | tools/uniParse.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/uniParse.tcl b/tools/uniParse.tcl index 5608d25..99ecf40 100644 --- a/tools/uniParse.tcl +++ b/tools/uniParse.tcl @@ -209,7 +209,7 @@ proc uni::main {} { * to the same alternate page number. */ -static CONST unsigned short pageMap\[\] = {" +static const unsigned short pageMap\[\] = {" set line " " set last [expr {[llength $pMap] - 1}] for {set i 0} {$i <= $last} {incr i} { @@ -231,7 +231,7 @@ static CONST unsigned short pageMap\[\] = {" * set of character attributes. */ -static CONST unsigned char groupMap\[\] = {" +static const unsigned char groupMap\[\] = {" set line " " set lasti [expr {[llength $pages] - 1}] for {set i 0} {$i <= $lasti} {incr i} { @@ -270,7 +270,7 @@ static CONST unsigned char groupMap\[\] = {" * highest field so we can easily sign extend. */ -static CONST int groups\[\] = {" +static const int groups\[\] = {" set line " " set last [expr {[llength $groups] - 1}] for {set i 0} {$i <= $last} {incr i} { |