aboutsummaryrefslogtreecommitdiff
path: root/lib/forlanlex.l
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-05-21 11:32:27 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2013-05-21 11:32:27 +0300
commitf5f9ad5a144999f7c788119cc21d967734ae0dba (patch)
treec65c817e401c8264212e1b7abad9ac2fa18ece94 /lib/forlanlex.l
parentdc2eda2489f6f8e9bd699c3968edd0710b3adb73 (diff)
downloadeclat-f5f9ad5a144999f7c788119cc21d967734ae0dba.tar.gz
eclat-f5f9ad5a144999f7c788119cc21d967734ae0dba.tar.bz2
Various minor fixes.
* doc/eclat.conf.5: Document EC2 maps. * etc/eclat.cfin: Provide default maps. * lib/Makefile.am (AM_LFLAGS): Remove -v. * lib/bidimap.c (cb_submap): Remove unused variable. * lib/forlan.c: Minor change. * lib/forlangrm.y: Declare prototype for yylex. * lib/forlanlex.l: Add option nounput * lib/libeclat.h (eclat_map) <locus>: New member. * lib/map.c (eclat_map_config): Warn if attempting to redeclare an existing map. * src/ec2map.c (ec2_map_get): Minor change.
Diffstat (limited to 'lib/forlanlex.l')
-rw-r--r--lib/forlanlex.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/forlanlex.l b/lib/forlanlex.l
index 423372e..c1261e5 100644
--- a/lib/forlanlex.l
+++ b/lib/forlanlex.l
@@ -53,12 +53,14 @@ static size_t forlan_input_pos;
} while (0);
static int yywrap(void);
%}
+%option nounput
+
WS [ \t\f][ \t\f]*
IDC [a-zA-Z_0-9-]
%x COMMENT ML STR
%%
/* Comments */
"/*" BEGIN(COMMENT);

Return to:

Send suggestions and report system problems to the System administrator.