Internals: Fix useless rule and flex warning

This commit is contained in:
Wilson Snyder 2010-04-09 21:06:16 -04:00
parent 2525b3fb05
commit c807bf1e0e

View File

@ -172,7 +172,6 @@ psl [p]sl
<DEFVAL>[\\]{crnl} { linenoInc(); appendDefValue((char*)"\n",1); } /* Return, but not \ is part of define value */
<DEFVAL>[^\/\*\n\r\\]+ |
<DEFVAL>[\\][^\n\r] |
<DEFVAL>{word} { appendDefValue(yytext,yyleng); }
<DEFVAL>. { appendDefValue(yytext,yyleng); }
/* Comments inside define values - if embedded get added to define value per spec */