aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-25 20:02:41 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-25 20:02:41 +0000
commit95f82bd08d67a5ca66949846481d11159e38827b (patch)
tree9287c91ffe7aff90c67be297613b07eeeaafb700 /rcfile_l.l
parent44d69d470268d3fe86342c74478b9b58258fdc03 (diff)
downloadfetchmail-95f82bd08d67a5ca66949846481d11159e38827b.tar.gz
fetchmail-95f82bd08d67a5ca66949846481d11159e38827b.tar.bz2
fetchmail-95f82bd08d67a5ca66949846481d11159e38827b.zip
Explicit option is documented and set up in the data structure,
but doesn't work yet. svn path=/trunk/; revision=145
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index 30ce2978..5ac469d6 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -38,10 +38,12 @@ keep { yylval.flag = TRUE; return KW_KEEP; }
flush { yylval.flag = TRUE; return KW_FLUSH; }
fetchall { yylval.flag = TRUE; return KW_FETCHALL; }
rewrite { yylval.flag = TRUE; return KW_REWRITE; }
+explicit { yylval.flag = TRUE; return KW_EXPLICIT; }
nokeep { yylval.flag = FALSE; return KW_KEEP; }
noflush { yylval.flag = FALSE; return KW_FLUSH; }
nofetchall { yylval.flag = FALSE; return KW_FETCHALL; }
norewrite { yylval.flag = FALSE; return KW_REWRITE; }
+noexplicit { yylval.flag = FALSE; return KW_EXPLICIT; }
port { return KW_PORT; }
(auto)|(AUTO) { yylval.proto = P_AUTO; return PROTO_AUTO; }