disable unput here, too

svn path=/trunk/; revision=21323
This commit is contained in:
Richard van der Hoff 2007-04-03 19:28:59 +00:00
parent 1c7d843166
commit 8cebae3c33
1 changed files with 6 additions and 0 deletions

View File

@ -52,6 +52,12 @@ text [^ \n\t]+
mailfwd >
eol \r?\n\r?
/* we don't use unput, so don't generate code for it.
* This is flex-only, but current thinking is that our lexers don't work
* with non-flex anyway...
*/
%option nounput
%%
{byte} { parse_token(T_BYTE, yytext); }