diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-06-13 07:50:45 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-06-13 07:50:45 (GMT) |
commit | 59683e852906736276df6b8146064666098071b5 (patch) | |
tree | 693dacf60dae3bf6cb3bcbca5465b3f286e43b92 /Modules/unicodedata_db.h | |
parent | 1c95155bd153e4b9434a42ae434f6f6221c042a2 (diff) | |
download | cpython-59683e852906736276df6b8146064666098071b5.zip cpython-59683e852906736276df6b8146064666098071b5.tar.gz cpython-59683e852906736276df6b8146064666098071b5.tar.bz2 |
Merged revisions 64226 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r64226 | martin.v.loewis | 2008-06-13 09:47:47 +0200 (Fr, 13 Jun 2008) | 2 lines
Make more symbols static.
........
Diffstat (limited to 'Modules/unicodedata_db.h')
-rw-r--r-- | Modules/unicodedata_db.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/unicodedata_db.h b/Modules/unicodedata_db.h index d68466a..f56e446 100644 --- a/Modules/unicodedata_db.h +++ b/Modules/unicodedata_db.h @@ -228,7 +228,7 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { #define TOTAL_FIRST 356 #define TOTAL_LAST 53 struct reindex{int start;short count,index;}; -struct reindex nfc_first[] = { +static struct reindex nfc_first[] = { { 60, 2, 0}, { 65, 15, 3}, { 82, 8, 19}, @@ -425,7 +425,7 @@ struct reindex nfc_first[] = { {0,0,0} }; -struct reindex nfc_last[] = { +static struct reindex nfc_last[] = { { 768, 4, 0}, { 774, 6, 5}, { 783, 0, 12}, |