remove newlines from guessed macro names in preprocessor
This commit is contained in:
@@ -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):
|
||||
|
Reference in New Issue
Block a user