aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-08 08:21:38 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-08 08:21:38 +0000
commitb4fe63bde9631e072f26911363739c0042d8b2db (patch)
treed763b83948983c0f4a592c36dd0c66622d88ef7c /rcfile_l.l
parent9edf372fb9e281930eaabd090731f9a5c312f7fb (diff)
downloadfetchmail-b4fe63bde9631e072f26911363739c0042d8b2db.tar.gz
fetchmail-b4fe63bde9631e072f26911363739c0042d8b2db.tar.bz2
fetchmail-b4fe63bde9631e072f26911363739c0042d8b2db.zip
More English-like keywords.
svn path=/trunk/; revision=249
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index 07abe7b0..7d055f87 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -35,6 +35,7 @@ smtp(host)? { return SMTPHOST; }
mda { return MDA; }
is { return IS; }
here { return HERE; }
+there { return THERE; }
keep { yylval.flag = FLAG_TRUE; return KEEP; }
flush { yylval.flag = FLAG_TRUE; return FLUSH; }
@@ -49,7 +50,9 @@ noskip { yylval.flag = FLAG_FALSE; return SKIP; }
with {/* EMPTY */}
and {/* EMPTY */}
+has {/* EMPTY */}
options {/* EMPTY */}
+[;:,] {/* EMPTY */}
(auto)|(AUTO) { yylval.proto = P_AUTO; return PROTO; }
(pop2)|(POP2) { yylval.proto = P_POP2; return PROTO; }