fixed .lst files whitespace problem [LnmVolbo]

This commit is contained in:
hap 2015-06-04 12:19:20 +02:00
parent 76b61002a9
commit 27138786f8

View File

@ -28,7 +28,7 @@ def parse_file(srcfile):
if c==13 and line[srcptr]==10:
srcptr+=1
continue
if c==' ':
if c==' ' or c==9:
continue
if in_comment==1 and c=='*' and line[srcptr]=='/' :
srcptr+=1