Add noinput directive to all lex files to avoid a compiler warning.

This commit is contained in:
Alexandre Julliard 2008-07-07 12:31:33 +02:00
parent e43004ac40
commit 28a2179dd6
5 changed files with 5 additions and 5 deletions

View File

@ -126,7 +126,7 @@
*/ */
%option stack %option stack
%option 8bit never-interactive %option 8bit never-interactive
%option nounput %option noinput nounput
%option prefix="ppy_" %option prefix="ppy_"
%x pp_pp %x pp_pp

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
%option nounput interactive 8bit prefix="dbg_" %option noinput nounput interactive 8bit prefix="dbg_"
%{ %{
#include "config.h" #include "config.h"

View File

@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
%} %}
%option nounput interactive 8bit %option noinput nounput interactive 8bit
%x quote %x quote
%{ %{
#include "config.h" #include "config.h"

View File

@ -19,7 +19,7 @@
*/ */
%option stack %option stack
%option nounput noyy_top_state %option noinput nounput noyy_top_state
%option 8bit never-interactive prefix="parser_" %option 8bit never-interactive prefix="parser_"
nl \r?\n nl \r?\n

View File

@ -84,7 +84,7 @@
%x pp_code_page %x pp_code_page
%option stack %option stack
%option nounput noyy_top_state noyywrap %option noinput nounput noyy_top_state noyywrap
%option 8bit never-interactive %option 8bit never-interactive
%option prefix="parser_" %option prefix="parser_"