Commit 2763a983 authored by Alexandre Julliard's avatar Alexandre Julliard

Mark all lexers as never-interactive.

parent 5db9abaf
...@@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(asmshader); ...@@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(asmshader);
%option noyywrap %option noyywrap
%option prefix="asmshader_" %option prefix="asmshader_"
%option noinput nounput %option noinput nounput never-interactive
/* Swizzles and writemasks consist of a dot and up to 4 x, y, z or w characters, /* Swizzles and writemasks consist of a dot and up to 4 x, y, z or w characters,
* or up to 4 a, r, g, b characters. There are different rules for swizzles and * or up to 4 a, r, g, b characters. There are different rules for swizzles and
......
...@@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(hlsl_parser); ...@@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(hlsl_parser);
%} %}
%option noyywrap nounput noinput %option noyywrap nounput noinput never-interactive
%option prefix="hlsl_" %option prefix="hlsl_"
%x pp pp_line pp_pragma pp_ignore %x pp pp_line pp_pragma pp_ignore
......
...@@ -58,7 +58,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml); ...@@ -58,7 +58,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml);
%option reentrant bison-bridge %option reentrant bison-bridge
%option noyywrap %option noyywrap
%option prefix="xslpattern_" %option prefix="xslpattern_"
%option noinput nounput %option noinput nounput never-interactive
/* From the w3c XML standard /* From the w3c XML standard
* <http://www.w3.org/TR/REC-xml/> */ * <http://www.w3.org/TR/REC-xml/> */
......
...@@ -19,7 +19,7 @@ ...@@ -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 noinput nounput interactive 8bit prefix="dbg_" %option noinput nounput never-interactive 8bit prefix="dbg_"
%{ %{
#include "config.h" #include "config.h"
......
...@@ -20,7 +20,7 @@ ...@@ -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 noinput nounput interactive 8bit %option noinput nounput never-interactive 8bit
%x quote %x quote
%{ %{
#include "config.h" #include "config.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment