; * lisp/indent.el (indent-for-tab-command): Use 'memq'. (Bug#67158)

This commit is contained in:
Eli Zaretskii 2023-11-29 16:24:48 +02:00
parent 589e6ae1fb
commit 914e9bd4fe

View file

@ -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))