mirror of
https://github.com/pret/pokecrystal.git
synced 2026-06-02 22:09:51 -05:00
remove newlines from guessed macro names in preprocessor
This commit is contained in:
parent
386a688eca
commit
5bc8b861f6
|
|
@ -366,7 +366,7 @@ def quote_translator(asm):
|
|||
return
|
||||
|
||||
def extract_token(asm):
|
||||
token = asm.split(" ")[0].replace("\t", "")
|
||||
token = asm.split(" ")[0].replace("\t", "").replace("\n", "")
|
||||
return token
|
||||
|
||||
def macro_test(asm):
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user