diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-02-22 04:04:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-02-22 04:04:41 +0000 |
commit | 83cec868b20841b81fd0c3b59d8e98c81f5608ea (patch) | |
tree | e9accfafaa30bc84d0efccb8e993289eb168fdee /rcfile_l.l | |
parent | 6f390a7fe4dfd8640c9866ad5d47ca2ffff47105 (diff) | |
download | fetchmail-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.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; |