aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-02-22 04:04:41 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-02-22 04:04:41 +0000
commit83cec868b20841b81fd0c3b59d8e98c81f5608ea (patch)
treee9accfafaa30bc84d0efccb8e993289eb168fdee /rcfile_l.l
parent6f390a7fe4dfd8640c9866ad5d47ca2ffff47105 (diff)
downloadfetchmail-83cec868b20841b81fd0c3b59d8e98c81f5608ea.tar.gz
fetchmail-83cec868b20841b81fd0c3b59d8e98c81f5608ea.tar.bz2
fetchmail-83cec868b20841b81fd0c3b59d8e98c81f5608ea.zip
Tweak in lexical analysis.
svn path=/trunk/; revision=2764
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 91b82d88..32e274cc 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -177,7 +177,7 @@ options {/* EMPTY */}
(#.*)?\\?\n { prc_lineno++; } /* newline is ignored */
--?[0-9]+ { yylval.number = atoi(yytext); return NUMBER; }
+-?[0-9]+/[^a-zA-Z] { yylval.number = atoi(yytext); return NUMBER; }
[^=;:, \t\r\n]+ {
char buf[MSGBUFSIZE];