Removed some unneeded cruft.

git-svn-id: http://svn.clifford.at/openscad/trunk@584 b57f626f-c46c-0410-a088-ec61d464b74c
stl_dim
kintel 2011-01-09 16:08:20 +00:00
parent f889ec36f7
commit 62dc1a48ef
1 changed files with 4 additions and 4 deletions

View File

@ -72,7 +72,7 @@ QString filepath;
%option noyywrap
%x comment string
%x include path
%x include
DIGIT [0-9]
@ -80,9 +80,9 @@ DIGIT [0-9]
include[ \t\r\n>]*"<" { BEGIN(include); }
<include>{
<path>[^\t\r\n>]+"/" { filepath = yytext; }
<path>[^\t\r\n>/]+ { filename = yytext; }
<path>">" { BEGIN(INITIAL); includefile(); }
[^\t\r\n>]+"/" { filepath = yytext; }
[^\t\r\n>/]+ { filename = yytext; }
">" { BEGIN(INITIAL); includefile(); }
}