; * lisp/indent.el (indent-for-tab-command): Use 'memq'. (Bug#67158)
This commit is contained in:
parent
589e6ae1fb
commit
914e9bd4fe
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue