diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-13 07:47:53 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-13 07:47:53 (GMT) |
commit | 18307335f46139e34fa01638fe074b85953322ee (patch) | |
tree | f00f57d64e8175f3576812b6acab2d1edc1b9afd | |
parent | e63be0947874f10559c6323ca3c9cafaf64d0fa8 (diff) |
Clifford Wolf:
Fixed lexing '//' comment with no newline at end of file
git-svn-id: http://svn.clifford.at/openscad/trunk@270 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ extern const char *parser_input_buffer; } [\n\r\t ] -\/\/[^\n]*\n +\/\/[^\n]*\n? "/*" BEGIN(comment); <comment>"*/" BEGIN(INITIAL); <comment>.|\n |