From: Aki Tuomi Date: Mon, 15 Dec 2025 09:45:15 +0000 (+0200) Subject: lib-var-expand: Remove stray 'y' X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5029ec61fee3b2863545f62f73ba5e117ec56423;p=thirdparty%2Fdovecot%2Fcore.git lib-var-expand: Remove stray 'y' It was left there by accident in 07838de2f838fce4f23c45059242e2bd4be23e73 --- diff --git a/src/lib-var-expand/var-expand-lexer.l b/src/lib-var-expand/var-expand-lexer.l index 6ee88cd9e2..29e884ed9b 100644 --- a/src/lib-var-expand/var-expand-lexer.l +++ b/src/lib-var-expand/var-expand-lexer.l @@ -120,7 +120,7 @@ static bool append_valid_utf8(void *yyscanner, YYSTYPE *state, const char *value ["] { yy_push_state(stringdq, yyscanner); INIT_STR; } [0-9]+ { INIT_STR; str_append(yylval->str, yytext); return NUMBER; } } -y + "%{" { yy_push_state(expr, yyscanner); return OCBRACE; } "%%{" { INIT_STR; str_append(yylval->str, "%{"); return VALUE; } "%" { return PERC; }