imagemap: Add lexer options to not generate input and yyunput

This commit is contained in:
Mukund Sivaraman 2011-04-27 21:11:57 +05:30
parent 6877a14caf
commit 56f08d682b
3 changed files with 6 additions and 0 deletions

View file

@ -34,6 +34,8 @@
%}
%option noyywrap
%option noinput
%option nounput
DIGIT [0-9]
ID [a-zA-Z_][a-zA-Z0-9_\-]*

View file

@ -34,6 +34,8 @@
%}
%option noyywrap
%option noinput
%option nounput
DIGIT [0-9]
ID [a-zA-Z_][a-zA-Z0-9_\-]*

View file

@ -34,6 +34,8 @@
%}
%option noyywrap
%option noinput
%option nounput
DIGIT [0-9]
ID [a-zA-Z_][a-zA-Z0-9_\-]*