diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-30 17:23:41 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-30 17:23:43 -0500 |
commit | 8fe7f4c3a567edbbdc1579dee8f5ffb6afb7df1c (patch) | |
tree | 700d607e4647a089d84667775eb029a106172e76 /preprocessor.py | |
parent | d2ff1d7aaa268496009796ffa4bdfabc93b2dea4 (diff) |
HACK: re-instate the ItemFragment macro hack
This is to fix the preprocessor temporarily. Maybe ItemFragment can be
removed completely.
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preprocessor.py b/preprocessor.py index e529fe043..0d55c906f 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -626,7 +626,7 @@ def preprocess(macros, skippable_macros=None, lines=None): macro_table = make_macro_table(list(set(macros + skippable_macros))) # HACK for pokecrystal. Must be after make_macro_table call. - skippable_macros += ["TextEndingCommand"] + skippable_macros += ["TextEndingCommand", "ItemFragment"] if not lines: # read each line from stdin |