diff options
author | Michael Banack <bob5972@gmail.com> | 2010-04-13 00:29:50 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-04-13 00:59:35 +0200 |
commit | 35d898862014f2c7e88024f3eae35db20741c7bb (patch) | |
tree | 85ecc36e23cb1f4cfcfad6c9357ce3120e659966 /rcfile_l.l | |
parent | 7315a8bbf7e0a31e5086b67d723a2d68df10c21b (diff) | |
download | fetchmail-35d898862014f2c7e88024f3eae35db20741c7bb.tar.gz fetchmail-35d898862014f2c7e88024f3eae35db20741c7bb.tar.bz2 fetchmail-35d898862014f2c7e88024f3eae35db20741c7bb.zip |
Consistently call SETSTATE rather than BEGIN.
Diffstat (limited to 'rcfile_l.l')
-rw-r--r-- | rcfile_l.l | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -41,7 +41,10 @@ int prc_lineno = 1; return STRING; } -"*" { BEGIN(0); return WILDCARD; } +"*" { + SETSTATE(0); + return WILDCARD; + } <NAME>[^=;:, \t\r\n]+ { char *in = xstrdup(yytext); |