Alexandre Julliard : Mark all lexers as never-interactive.

Alexandre Julliard julliard at winehq.org
Mon Oct 1 13:35:02 CDT 2012


Module: wine
Branch: master
Commit: 2763a983fe812a731d654195b76f0ab212bdd756
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2763a983fe812a731d654195b76f0ab212bdd756

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Oct  1 12:19:25 2012 +0200

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 8b3bf49..35a4048 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 1e3b4a9..49fb042 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 eb84e40..bda3836 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
  * <http://www.w3.org/TR/REC-xml/> */
diff --git a/programs/winedbg/debug.l b/programs/winedbg/debug.l
index 30c8aea..ab1f865 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 abc04d3..4d679e1 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"




More information about the wine-cvs mailing list