From 914e9bd4fe5ab9360d98a79e0bf9beb22f6973e2 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 29 Nov 2023 16:24:48 +0200 Subject: [PATCH] ; * lisp/indent.el (indent-for-tab-command): Use 'memq'. (Bug#67158) --- lisp/indent.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/indent.el b/lisp/indent.el index f64049d64b2..f856f0c9ab5 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -190,7 +190,7 @@ prefix argument is ignored." ('nil t) ('eol (eolp)) ('word (not (eql 2 syn))) - ('word-or-paren (not (memql syn '(2 4 5)))) + ('word-or-paren (not (memq syn '(2 4 5)))) ('word-or-paren-or-punct (not (memq syn '(2 4 5 1)))))))) (completion-at-point)) -- 2.39.5