aboutsummaryrefslogtreecommitdiff
path: root/lib/forlanlex.l
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2012-10-01 16:43:18 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2012-10-01 16:58:20 +0300
commitddb280198adcada561b8e72c79b92d50a05b3e78 (patch)
treede6f2d47fe10d0fb37279893d17ffcbd30b156ce /lib/forlanlex.l
parent78b25d9756403fef919684738f7aecb2cdcee465 (diff)
downloadeclat-ddb280198adcada561b8e72c79b92d50a05b3e78.tar.gz
eclat-ddb280198adcada561b8e72c79b92d50a05b3e78.tar.bz2
Implement exit; add some docs.
* Makefile.am (SUBDIRS): Add doc. * configure.ac: Build doc/Makefile * doc/Makefile.am: New file. * doc/eclat-associate-address.1: New file. * doc/eclat.1: New file. * etc/associate-address.fln: Call exit if the request fails. * etc/default.fln: Call exit if error is returned or if the response is not recognized. * lib/forlan.c (forlan_eval_env) <exit_code>: New member. New built-in function: exit. (forlan_run): Return exit code. * lib/forlan.h (forlan_run): Change return type. * lib/forlanlex.l: Treat unquoted decimal number as a quoted string. * src/asscaddr-cl.opt: Minor changes. * src/cmdline.opt: Minor changes. * src/eclat.c: Return EX_NOPERM on unsufficient permissions to open the configuration file. * tests/exit.at: New file. * tests/Makefile.am: Add new files. * tests/testsuite.at: Include new test cases. * tests/tforlan.c: Propagate the return from forlan_run to the shell.
Diffstat (limited to 'lib/forlanlex.l')
-rw-r--r--lib/forlanlex.l5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/forlanlex.l b/lib/forlanlex.l
index c3797dd..8b3d29a 100644
--- a/lib/forlanlex.l
+++ b/lib/forlanlex.l
@@ -66,6 +66,11 @@ IDC [a-zA-Z_0-9-]
66<COMMENT>\n grecs_locus_point_advance_line(grecs_current_locus_point); 66<COMMENT>\n grecs_locus_point_advance_line(grecs_current_locus_point);
67<COMMENT>"*"+"/" BEGIN(INITIAL); 67<COMMENT>"*"+"/" BEGIN(INITIAL);
68"//".* ; 68"//".* ;
69 /* Decimal numbers */
70[0-9][0-9]* { grecs_line_begin();
71 grecs_line_add(yytext, yyleng);
72 yylval.string = grecs_line_finish();
73 return STRING; }
69 /* Keywords */ 74 /* Keywords */
70if return IF; 75if return IF;
71else return ELSE; 76else return ELSE;

Return to:

Send suggestions and report system problems to the System administrator.