From 0afb43164484dcac4773ad778c032687da6b01aa Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 14 Jan 2003 00:13:20 +0000 Subject: rm the util directory --- util/epist/epist.l | 53 ----------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 util/epist/epist.l (limited to 'util/epist/epist.l') diff --git a/util/epist/epist.l b/util/epist/epist.l deleted file mode 100644 index 6c7e08a5..00000000 --- a/util/epist/epist.l +++ /dev/null @@ -1,53 +0,0 @@ -%{ -#ifdef HAVE_CONFIG_H -# include "../../config.h" -#endif // HAVE_CONFIG_H - -#include -#include -#include "yacc_parser.hh" - -extern YYSTYPE yylval; - -%} - -%option yylineno - -%% - -\{ return OBRACE; -\} return EBRACE; -; return SEMICOLON; -- return DASH; -Options | -options return OPTIONS; -Mod1 | -mod1 | -Mod2 | -mod2 | -Mod3 | -mod3 | -Mod4 | -mod4 | -Mod5 | -mod5 | -Control | -control | -shift | -Shift yylval = (int) strdup(yytext); return BINDING; -on | -On | -true | -True yylval = (int) strdup(yytext); return TRUE; -Off | -off | -false | -False yylval = (int) strdup(yytext); return FALSE; -[0-9]+ yylval = (int) strdup(yytext); return NUMBER; -\".+\" yylval = (int) strdup(yytext); return QUOTES; -[a-zA-Z_0-9]+ yylval = (int) strdup(yytext); return WORD; -#.+\n /* ignore */ -\n /* ignore */ -[ \t]+ /* */ -%% - -- cgit v1.2.3