diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-04-10 13:26:14 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-04-10 13:26:14 +0200 |
commit | a1fefd08e2722d93b6f776baa817e2d0d1044ee2 (patch) | |
tree | 5945d88f1921663a2a6706ca554e509dd997218a /rcfile_l.l | |
parent | a3cfd05862481adab8bfa2a8653f489ad40af6a6 (diff) | |
download | fetchmail-a1fefd08e2722d93b6f776baa817e2d0d1044ee2.tar.gz fetchmail-a1fefd08e2722d93b6f776baa817e2d0d1044ee2.tar.bz2 fetchmail-a1fefd08e2722d93b6f776baa817e2d0d1044ee2.zip |
Add more flex options, document requirement.
Diffstat (limited to 'rcfile_l.l')
-rw-r--r-- | rcfile_l.l | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,7 +1,7 @@ %{ /* - * rcfile_l.l -- lexer for the run control file + * rcfile_l.l -- lexer for the run control file, to be used with GNU flex. * * For license terms, see the file COPYING in this directory. */ @@ -23,11 +23,9 @@ int prc_lineno = 1; %} -/* this doesn't work with Linux lex, see the INSTALL file */ -%o 7000 -%a 4000 -%p 3000 %option nounput noyywrap +%option warn nodefault +%option 8bit batch %s NAME AUTH |