refactor preprocessor macros into a function

Remove the "macros" global and instead use a function to construct a
list of macros.
This commit is contained in:
Bryan Bishop
2013-08-31 10:13:17 -05:00
parent 63c2dc2f1f
commit 5815edf382
2 changed files with 23 additions and 15 deletions

View File

@@ -14,4 +14,4 @@ if __name__ == '__main__':
dest = os.path.splitext(source)[0] + '.tx'
sys.stdin = open(source, 'r')
sys.stdout = open(dest, 'w')
preprocessor.preprocess(preprocessor.macros)
preprocessor.preprocess(preprocessor.load_pokecrystal_macros())