From 96eb2dc401f785e2b35a2089dda24416ff9bb305 Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Mon, 26 Sep 2005 12:49:52 +0000 Subject: Relevant BUGIDs: none Purpose of commit: bugfix Commit summary: --------------- Fix spec generation and creating tar archive with automake: * configure.in: Add doc/specs/Makefile. * Makefile.am: Add releasedocs rule. * doc/Makefile.am: Add specs subdir, remove files from specs directory, add rfc86.0.txt to releasedocs. * doc/specs/Makefile.am: New file. * doc/specs/formatter/parse.y: move from here ... * doc/specs/parse.y: ... here. * doc/specs/formatter/parse.lex: move from here ... * doc/specs/parse.lex: ... here. --- doc/specs/parse.lex | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 doc/specs/parse.lex (limited to 'doc/specs/parse.lex') diff --git a/doc/specs/parse.lex b/doc/specs/parse.lex new file mode 100644 index 00000000..1d5c898e --- /dev/null +++ b/doc/specs/parse.lex @@ -0,0 +1,11 @@ +%% + +\#[\$]+[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; + +%% -- cgit v1.2.3