aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rcfile_l.l43
1 files changed, 20 insertions, 23 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index 365c6a05..b7f22949 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -23,7 +23,26 @@ int prc_lineno = 1;
%%
-<NAME>[^=;:, \t\r\n\"\']+ {
+\"[^\"]*\" {
+ char buf[MSGBUFSIZE];
+
+ yytext[strlen(yytext)-1] = '\0';
+ escapes(yytext+1, buf);
+ yylval.sval = (char *) xstrdup(buf);
+ BEGIN(0);
+ return STRING;
+ }
+\'[^\']*\' {
+ char buf[MSGBUFSIZE];
+
+ yytext[strlen(yytext)-1] = '\0';
+ escapes(yytext+1, buf);
+ yylval.sval = (char *) xstrdup(buf);
+ BEGIN(0);
+ return STRING;
+ }
+
+<NAME>[^=;:, \t\r\n]+ {
char buf[MSGBUFSIZE];
escapes(yytext, buf);
@@ -142,32 +161,10 @@ options {/* EMPTY */}
(etrn)|(ETRN) { yylval.proto = P_ETRN; return PROTO; }
(kpop)|(KPOP) { return KPOP; }
-remote(folder)? {
- fprintf(stderr,
- "fetchmail: `remote' keyword is gone, use `folder'\n");
- }
-
-
(#.*)?\\?\n { prc_lineno++; } /* newline is ignored */
[0-9]+ { yylval.number = atoi(yytext); return NUMBER; }
-\"[^\"]*\" {
- char buf[MSGBUFSIZE];
-
- yytext[strlen(yytext)-1] = '\0';
- escapes(yytext+1, buf);
- yylval.sval = (char *) xstrdup(buf);
- return STRING;
- }
-\'[^\']*\' {
- char buf[MSGBUFSIZE];
-
- yytext[strlen(yytext)-1] = '\0';
- escapes(yytext+1, buf);
- yylval.sval = (char *) xstrdup(buf);
- return STRING;
- }
[^=;:, \t\r\n]+ {
char buf[MSGBUFSIZE];