aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xwin/winprefslex.l
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2009-11-16 13:22:38 +0000
committermarha <marha@users.sourceforge.net>2009-11-16 13:22:38 +0000
commitfc2f819d646afc6df3304615fff9777a464cbe62 (patch)
tree4a5f4569199f55353c6c8d0124d9950cfa591b34 /xorg-server/hw/xwin/winprefslex.l
parentc4fa5f94b72b3d837959c79e773615fe9bd3ca97 (diff)
downloadvcxsrv-fc2f819d646afc6df3304615fff9777a464cbe62.tar.gz
vcxsrv-fc2f819d646afc6df3304615fff9777a464cbe62.tar.bz2
vcxsrv-fc2f819d646afc6df3304615fff9777a464cbe62.zip
Use flex and bison to generate winprefslex.c winprefsyacc.c and winprefsyacc.h
Diffstat (limited to 'xorg-server/hw/xwin/winprefslex.l')
-rw-r--r--xorg-server/hw/xwin/winprefslex.l4
1 files changed, 1 insertions, 3 deletions
diff --git a/xorg-server/hw/xwin/winprefslex.l b/xorg-server/hw/xwin/winprefslex.l
index 9a384a2cd..fd3fc1c05 100644
--- a/xorg-server/hw/xwin/winprefslex.l
+++ b/xorg-server/hw/xwin/winprefslex.l
@@ -41,8 +41,6 @@ extern YYSTYPE yylval;
extern char *yytext;
extern int yyparse(void);
-extern void ErrorF (const char* /*f*/, ...);
-
int yylineno;
/* Copy the parsed string, must be free()d in yacc parser */
@@ -88,7 +86,7 @@ ATSTART { return ATSTART; }
ATEND { return ATEND; }
EXEC { return EXEC; }
ALWAYSONTOP { return ALWAYSONTOP; }
-DEBUG { return DEBUG; }
+DEBUG { return DEBUGTOK; }
RELOAD { return RELOAD; }
TRAYICON { return TRAYICON; }
SILENTEXIT { return SILENTEXIT; }