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

This commit is contained in:
Alexandre Julliard 2006-09-09 11:25:50 +02:00
parent c58614fd2c
commit a2a8279238
2 changed files with 2 additions and 2 deletions

View file

@ -23,6 +23,6 @@ RC_SRCS = rsrc.rc
@MAKE_PROG_RULES@
@LEX_OUTPUT_ROOT@.c: macro.lex.l
$(LEX) -8 -i $(SRCDIR)/macro.lex.l
$(LEX) $(SRCDIR)/macro.lex.l
### Dependencies:

View file

@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
%}
%option nounput
%option nounput interactive 8bit
%x quote
%{
#include <assert.h>