Alexandre Julliard : winedbg: Specify the lex options directly in the source file.

Alexandre Julliard julliard at wine.codeweavers.com
Sun Sep 10 03:28:12 CDT 2006


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Sat Sep  9 11:25:41 2006 +0200

winedbg: Specify the lex options directly in the source file.

---

 programs/winedbg/Makefile.in |    2 +-
 programs/winedbg/debug.l     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/winedbg/Makefile.in b/programs/winedbg/Makefile.in
index 79b71d3..6c2274b 100644
--- a/programs/winedbg/Makefile.in
+++ b/programs/winedbg/Makefile.in
@@ -45,7 +45,7 @@ dbg.tab.h: dbg.tab.c
 dbg.tab.o: dbg.tab.h
 
 @LEX_OUTPUT_ROOT at .c: debug.l
-	$(LEX) -8 -I $(SRCDIR)/debug.l
+	$(LEX) $(SRCDIR)/debug.l
 
 @LEX_OUTPUT_ROOT at .o: dbg.tab.h
 
diff --git a/programs/winedbg/debug.l b/programs/winedbg/debug.l
index cb2a564..9fef183 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
+%option nounput interactive 8bit
 
 %{
 #include <stdlib.h>




More information about the wine-cvs mailing list