Module: wine Branch: master Commit: 878ea5d2e215b9591085724652620f8250de0c43 URL: http://source.winehq.org/git/wine.git/?a=commit;h=878ea5d2e215b9591085724652...
Author: Rob Shearman rob@codeweavers.com Date: Tue Feb 19 11:48:03 2008 +0000
Add the nounistd option to all lex source files.
---
libs/wpp/ppl.l | 1 + programs/winedbg/debug.l | 2 +- programs/winhelp/macro.lex.l | 2 +- tools/widl/parser.l | 1 + tools/wrc/parser.l | 1 + 5 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/libs/wpp/ppl.l b/libs/wpp/ppl.l index eae5465..198fcdb 100644 --- a/libs/wpp/ppl.l +++ b/libs/wpp/ppl.l @@ -128,6 +128,7 @@ %option 8bit never-interactive %option nounput %option prefix="ppy_" +%option nounistd
%x pp_pp %x pp_eol diff --git a/programs/winedbg/debug.l b/programs/winedbg/debug.l index d3b3b36..6e6c888 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 nounput interactive 8bit prefix="dbg_" +%option nounput interactive 8bit prefix="dbg_" nounistd
%{ #include <stdlib.h> diff --git a/programs/winhelp/macro.lex.l b/programs/winhelp/macro.lex.l index 1ff76ce..55e7ad6 100644 --- a/programs/winhelp/macro.lex.l +++ b/programs/winhelp/macro.lex.l @@ -20,7 +20,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ %} -%option nounput interactive 8bit +%option nounput interactive 8bit nounistd %x quote %{ #include <assert.h> diff --git a/tools/widl/parser.l b/tools/widl/parser.l index 2497a5e..a701453 100644 --- a/tools/widl/parser.l +++ b/tools/widl/parser.l @@ -21,6 +21,7 @@ %option stack %option nounput noyy_top_state %option 8bit never-interactive prefix="parser_" +%option nounistd
nl \r?\n ws [ \f\t\r] diff --git a/tools/wrc/parser.l b/tools/wrc/parser.l index 98f9c85..f4d0c19 100644 --- a/tools/wrc/parser.l +++ b/tools/wrc/parser.l @@ -87,6 +87,7 @@ %option nounput noyy_top_state noyywrap %option 8bit never-interactive %option prefix="parser_" +%option nounistd
/* Some shortcut definitions */ ws [ \f\t\r]