ossp-pkg/cfg/cfg_syn_scan.l 1.18 -> 1.19
--- cfg_syn_scan.l 2004/07/17 07:37:55 1.18
+++ cfg_syn_scan.l 2004/11/20 11:42:21 1.19
@@ -44,7 +44,6 @@
#define CTX ((cfg_syn_ctx_t *)yyget_extra(yyscanner))
/* provide own input handling */
-#define YY_NO_UNPUT 1
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) (result = yyinput(CTX, buf, max_size))
static int yyinput(cfg_syn_ctx_t *ctx, char *buf, int max_size);
@@ -72,6 +71,8 @@
%option bison-locations
%option never-interactive
%option noyywrap
+%option nounput
+%option noyy_top_state
/* scanner states */
%x SS_DQ
|
|