Make more symbols static.

This commit is contained in:
Martin v. Löwis 2008-06-13 07:47:47 +00:00
parent e1f6646d68
commit 111c180674
6 changed files with 13 additions and 13 deletions

View file

@ -229,12 +229,12 @@ def makeunicodedata(unicode, trace):
print >>fp, "#define TOTAL_FIRST",total_first
print >>fp, "#define TOTAL_LAST",total_last
print >>fp, "struct reindex{int start;short count,index;};"
print >>fp, "struct reindex nfc_first[] = {"
print >>fp, "static struct reindex nfc_first[] = {"
for start,end in comp_first_ranges:
print >>fp," { %d, %d, %d}," % (start,end-start,comp_first[start])
print >>fp," {0,0,0}"
print >>fp,"};\n"
print >>fp, "struct reindex nfc_last[] = {"
print >>fp, "static struct reindex nfc_last[] = {"
for start,end in comp_last_ranges:
print >>fp," { %d, %d, %d}," % (start,end-start,comp_last[start])
print >>fp," {0,0,0}"