From 27138786f8a654be620b8059db8dfe7b211ceb74 Mon Sep 17 00:00:00 2001 From: hap Date: Thu, 4 Jun 2015 12:19:20 +0200 Subject: [PATCH] fixed .lst files whitespace problem [LnmVolbo] --- src/build/makelist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/makelist.py b/src/build/makelist.py index eeaac070427..1f94814bf88 100644 --- a/src/build/makelist.py +++ b/src/build/makelist.py @@ -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