remove newlines from guessed macro names in preprocessor
This commit is contained in:
@@ -366,7 +366,7 @@ def quote_translator(asm):
|
|||||||
return
|
return
|
||||||
|
|
||||||
def extract_token(asm):
|
def extract_token(asm):
|
||||||
token = asm.split(" ")[0].replace("\t", "")
|
token = asm.split(" ")[0].replace("\t", "").replace("\n", "")
|
||||||
return token
|
return token
|
||||||
|
|
||||||
def macro_test(asm):
|
def macro_test(asm):
|
||||||
|
Reference in New Issue
Block a user