diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 08:34:51 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 08:34:51 +0000 |
commit | f7d0daeb0d98a8d0e33e5cd6ee8fe58b10115c41 (patch) | |
tree | a108543e2c8bdf21dbb84a06b591911e4a0d29c8 | |
parent | 199e643f8cfebb5c958f6f80af8b79c183f1fffe (diff) | |
download | fetchmail-f7d0daeb0d98a8d0e33e5cd6ee8fe58b10115c41.tar.gz fetchmail-f7d0daeb0d98a8d0e33e5cd6ee8fe58b10115c41.tar.bz2 fetchmail-f7d0daeb0d98a8d0e33e5cd6ee8fe58b10115c41.zip |
Fix the punctuation bug.
svn path=/trunk/; revision=251
-rw-r--r-- | fetchmail.man | 3 | ||||
-rw-r--r-- | rcfile_l.l | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/fetchmail.man b/fetchmail.man index 065f596d..87cd0c90 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -577,9 +577,6 @@ software. .PP The RPOP support is not yet well tested. .PP -The configuration file lexer handles punctuation adjacent to keywords poorly. -Flex can be very mysterious at times. -.PP Send comments, bug reports, gripes, and the like to Eric S. Raymond <esr@thyrsus.com>. .SH NOTES @@ -69,7 +69,7 @@ options {/* EMPTY */} yylval.sval = (char *) strdup(yytext+1); return STRING; } -[^ \t\r\n]+ { yylval.sval = (char *) strdup(yytext); return STRING; } +[^;:, \t\r\n]+ { yylval.sval = (char *) strdup(yytext); return STRING; } [ \t\r]+ ; /* whitespace */ |