From 2763a983fe812a731d654195b76f0ab212bdd756 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 1 Oct 2012 12:19:25 +0200 Subject: [PATCH] Mark all lexers as never-interactive. --- dlls/d3dcompiler_43/asmshader.l | 2 +- dlls/d3dcompiler_43/hlsl.l | 2 +- dlls/msxml3/xslpattern.l | 2 +- programs/winedbg/debug.l | 2 +- programs/winhlp32/macro.lex.l | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dlls/d3dcompiler_43/asmshader.l b/dlls/d3dcompiler_43/asmshader.l index 8b3bf49d3d5..35a404817f5 100644 --- a/dlls/d3dcompiler_43/asmshader.l +++ b/dlls/d3dcompiler_43/asmshader.l @@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(asmshader); %option noyywrap %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, * or up to 4 a, r, g, b characters. There are different rules for swizzles and diff --git a/dlls/d3dcompiler_43/hlsl.l b/dlls/d3dcompiler_43/hlsl.l index 1e3b4a97e0a..49fb042bd60 100644 --- a/dlls/d3dcompiler_43/hlsl.l +++ b/dlls/d3dcompiler_43/hlsl.l @@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(hlsl_parser); %} -%option noyywrap nounput noinput +%option noyywrap nounput noinput never-interactive %option prefix="hlsl_" %x pp pp_line pp_pragma pp_ignore diff --git a/dlls/msxml3/xslpattern.l b/dlls/msxml3/xslpattern.l index eb84e40bc79..bda383602cf 100644 --- a/dlls/msxml3/xslpattern.l +++ b/dlls/msxml3/xslpattern.l @@ -58,7 +58,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml); %option reentrant bison-bridge %option noyywrap %option prefix="xslpattern_" -%option noinput nounput +%option noinput nounput never-interactive /* From the w3c XML standard * */ diff --git a/programs/winedbg/debug.l b/programs/winedbg/debug.l index 30c8aea4a3d..ab1f865dd5e 100644 --- a/programs/winedbg/debug.l +++ b/programs/winedbg/debug.l @@ -19,7 +19,7 @@ * 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" diff --git a/programs/winhlp32/macro.lex.l b/programs/winhlp32/macro.lex.l index abc04d3ce09..4d679e1d20c 100644 --- a/programs/winhlp32/macro.lex.l +++ b/programs/winhlp32/macro.lex.l @@ -20,7 +20,7 @@ * 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 %{ #include "config.h" -- 2.11.4.GIT