diff options
Diffstat (limited to 'xorg-server/hw/xwin/winprefslex.l')
-rwxr-xr-x[-rw-r--r--] | xorg-server/hw/xwin/winprefslex.l | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xorg-server/hw/xwin/winprefslex.l b/xorg-server/hw/xwin/winprefslex.l index 9e6f0d6d4..0caeb6738 100644..100755 --- a/xorg-server/hw/xwin/winprefslex.l +++ b/xorg-server/hw/xwin/winprefslex.l @@ -37,8 +37,6 @@ #include <string.h> #include "winprefsyacc.h" -extern void ErrorF (const char* /*f*/, ...); - /* Copy the parsed string, must be free()d in yacc parser */ static char *makestr(char *str) { @@ -70,6 +68,9 @@ ICONDIRECTORY { return ICONDIRECTORY; } DEFAULTICON { return DEFAULTICON; } ICONS { return ICONS; } STYLES { return STYLES; } +TASKBAR { return TASKBAR; } +NOTAB { return NOTAB; } +NEWTAB { return NEWTAB; } TOPMOST { return TOPMOST; } MAXIMIZE { return MAXIMIZE; } MINIMIZE { return MINIMIZE; } |