Mark all lexers as never-interactive.

This commit is contained in:
Alexandre Julliard 2012-10-01 12:19:25 +02:00
parent 5db9abaf81
commit 2763a983fe
5 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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/> */

View File

@ -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"

View File

@ -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"