summaryrefslogtreecommitdiffstatshomepage
path: root/src/build
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2015-06-04 12:19:20 +0200
committer hap <happppp@users.noreply.github.com>2015-06-04 12:19:20 +0200
commit27138786f8a654be620b8059db8dfe7b211ceb74 (patch)
tree897cbd9e9e20a565b64009fdd7678d6c091bb2fb /src/build
parent76b61002a9ff907860f2d71f525c33483ecb3be2 (diff)
fixed .lst files whitespace problem [LnmVolbo]
Diffstat (limited to 'src/build')
-rw-r--r--src/build/makelist.py2
1 files changed, 1 insertions, 1 deletions
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