aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-01-20 03:15:48 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-01-20 03:15:48 +0000
commit3162ca707f5aca13d341289b28cd65e80a5696bb (patch)
treecd168939630fa2fadca210080ec8c0f210fd0325 /rcfile_l.l
parentd3479000db65f685672d7d7a2a244f1e1e46be90 (diff)
downloadfetchmail-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.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index e8d80ec7..8156fd6a 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -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);