diff options
Diffstat (limited to 'src/build/makelist.py')
-rw-r--r-- | src/build/makelist.py | 2 |
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 |