diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-05-15 05:10:14 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-05-15 05:10:14 +0000 |
commit | a8bfd22a8cabd0fff5296ae326444068b26b93e0 (patch) | |
tree | 20cf350667e6fd5b09ab9282a1ce668166ff5591 /rcfile_l.l | |
parent | ff662e990c8ed273e93dfecd08a2b9cd89f96170 (diff) | |
download | fetchmail-a8bfd22a8cabd0fff5296ae326444068b26b93e0.tar.gz fetchmail-a8bfd22a8cabd0fff5296ae326444068b26b93e0.tar.bz2 fetchmail-a8bfd22a8cabd0fff5296ae326444068b26b93e0.zip |
Reduce false parssing of "no" prefixes.
svn path=/trunk/; revision=1009
Diffstat (limited to 'rcfile_l.l')
-rw-r--r-- | rcfile_l.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ to { return TO; } = { return MAP; } "*" { return WILDCARD; } -no/.* { return NO;} +no/[kfrsdu ] { return NO;} keep { return KEEP; } flush { return FLUSH; } |