aboutsummaryrefslogtreecommitdiff
path: root/doc/specs/parse_l.l
diff options
context:
space:
mode:
Diffstat (limited to 'doc/specs/parse_l.l')
-rw-r--r--doc/specs/parse_l.l21
1 files changed, 0 insertions, 21 deletions
diff --git a/doc/specs/parse_l.l b/doc/specs/parse_l.l
deleted file mode 100644
index 7cab424c..00000000
--- a/doc/specs/parse_l.l
+++ /dev/null
@@ -1,21 +0,0 @@
-%{
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <stdio.h>
-
-#include "parse_y.h"
-%}
-
-%%
-
-\#[\$]+[a-zA-Z]*(\=[0-9]+)? return NEW_COUNTER;
-\#\{[a-zA-Z][a-zA-Z0-9\_]*\} return LABEL;
-\# return NO_INDENT;
-\#\# return RIGHT;
-\\\# return HASH;
-[^\n] return CHAR;
-[\n] return NEWLINE;
-
-%%