From 52ebe20a67b3a8320b32501170d7bf18223fbceb Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Wed, 17 Jun 2015 02:31:58 +0200 Subject: [PATCH] Refine a comment --- lslopt/lslparse.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lslopt/lslparse.py b/lslopt/lslparse.py index 91e4b46..c0b2d9c 100644 --- a/lslopt/lslparse.py +++ b/lslopt/lslparse.py @@ -321,7 +321,10 @@ class parser(object): if c == '#' and self.skippreproc: # Preprocessor directives act like single line comments. # Most are not supposed to reach us but cpp also generates - # as output lines like: # 123 "file.lsl" + # lines in the output like: # 123 "file.lsl" + # and other preprocessors including Boost Wave and mcpp + # generate lines like: #line 123 "file.lsl" (Firestorm + # comments these out and outputs //#line 123 "file.lsl") self.ceof() while self.script[self.pos] != '\n': self.pos += 1