From: Eli Zaretskii Date: Wed, 29 Nov 2023 14:24:48 +0000 (+0200) Subject: ; * lisp/indent.el (indent-for-tab-command): Use 'memq'. (Bug#67158) X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=914e9bd4fe5ab9360d98a79e0bf9beb22f6973e2;p=emacs.git ; * lisp/indent.el (indent-for-tab-command): Use 'memq'. (Bug#67158) --- 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))