diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 08:21:38 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 08:21:38 +0000 |
commit | b4fe63bde9631e072f26911363739c0042d8b2db (patch) | |
tree | d763b83948983c0f4a592c36dd0c66622d88ef7c /rcfile_l.l | |
parent | 9edf372fb9e281930eaabd090731f9a5c312f7fb (diff) | |
download | fetchmail-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.l | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; } |