From b417685430653dc45aac3ebe61aeb3ccd5fb8656 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 28 Feb 2025 17:52:27 +0100 Subject: [PATCH] Expr: Allow _ in selectors. --- expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expr.c b/expr.c index 325edb900..d9f7953cb 100644 --- a/expr.c +++ b/expr.c @@ -123,7 +123,7 @@ struct { {NULL, 0, 0, 0, 0} // Terminator. }; -#define EXPR_OP_SPECIALCHARS "+-*%/!()<>=|&" +#define EXPR_OP_SPECIALCHARS "+-*%/!()<>=|&_" /* ================================ Expr token ============================== */