diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-20 03:15:48 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-20 03:15:48 +0000 |
commit | 3162ca707f5aca13d341289b28cd65e80a5696bb (patch) | |
tree | cd168939630fa2fadca210080ec8c0f210fd0325 /rcfile_l.l | |
parent | d3479000db65f685672d7d7a2a244f1e1e46be90 (diff) | |
download | fetchmail-3162ca707f5aca13d341289b28cd65e80a5696bb.tar.gz fetchmail-3162ca707f5aca13d341289b28cd65e80a5696bb.tar.bz2 fetchmail-3162ca707f5aca13d341289b28cd65e80a5696bb.zip |
Make the syntax of name mappings a little nicer.
svn path=/trunk/; revision=790
Diffstat (limited to 'rcfile_l.l')
-rw-r--r-- | rcfile_l.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ options {/* EMPTY */} yylval.sval = (char *) xstrdup(buf); return STRING; } -[^;:, \t\r\n]+ { +[^=;:, \t\r\n]+ { char buf[POPBUFSIZE]; escapes(yytext, buf); |