stop treating char as an integer type

Closes #7609
This commit is contained in:
Daniel Micay
2013-09-03 19:24:12 -04:00
parent 787f4c986c
commit 62a3434529
45 changed files with 227 additions and 215 deletions

View File

@@ -158,6 +158,7 @@ def emit_property_module(f, mod, tbl):
keys.sort()
emit_bsearch_range_table(f);
for cat in keys:
if cat == "Cs": continue
f.write(" static %s_table : &'static [(char,char)] = &[\n" % cat)
ix = 0
for pair in tbl[cat]: