diff --git a/textpre.py b/textpre.py index e7f191a95..58412d8ed 100644 --- a/textpre.py +++ b/textpre.py @@ -266,6 +266,11 @@ chars = { } for l in sys.stdin: + # skip lines with no quotes + if "\"" not in l: + sys.stdout.write(l) + continue + # strip comments asm = "" comment = None