]> Pileus Git - ~andy/fetchmail/commitdiff
Fix the punctuation bug.
authorEric S. Raymond <esr@thyrsus.com>
Tue, 8 Oct 1996 08:34:51 +0000 (08:34 -0000)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 8 Oct 1996 08:34:51 +0000 (08:34 -0000)
svn path=/trunk/; revision=251

fetchmail.man
rcfile_l.l

index 065f596df74f6a85f1e71bd99f4a51c5b222dd81..87cd0c909a5c151cb601b8a70b892844fcd24f93 100644 (file)
@@ -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
index f5bd41edc0d9ea3697ef6bcf3840a05a126b0e87..e402f2a54285544e0c9226fc6f0fe0e407e8fb65 100644 (file)
@@ -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 */