]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/indent.el (indent-for-tab-command): Use 'eq' for symbols.
authorPhilipp Stephani <phst@google.com>
Fri, 14 Jan 2022 20:02:08 +0000 (21:02 +0100)
committerPhilipp Stephani <phst@google.com>
Fri, 14 Jan 2022 20:02:08 +0000 (21:02 +0100)
lisp/indent.el

index ad6fd899c551c2382ffbd12fa87638eef8c3436a..4e16d30ac92767c86565a6edd7f33ff006406d67 100644 (file)
@@ -186,16 +186,16 @@ prefix argument is ignored."
              (eql old-tick (buffer-chars-modified-tick))
              (or (null tab-first-completion)
                  (eq last-command this-command)
-                 (and (equal tab-first-completion 'eol)
+                 (and (eq tab-first-completion 'eol)
                       (eolp))
-                 (and (member tab-first-completion
-                              '(word word-or-paren word-or-paren-or-punct))
+                 (and (memq tab-first-completion
+                            '(word word-or-paren word-or-paren-or-punct))
                       (not (eql 2 syn)))
-                 (and (member tab-first-completion
-                              '(word-or-paren word-or-paren-or-punct))
+                 (and (memq tab-first-completion
+                            '(word-or-paren word-or-paren-or-punct))
                       (not (or (eql 4 syn)
                                (eql 5 syn))))
-                 (and (equal tab-first-completion 'word-or-paren-or-punct)
+                 (and (eq tab-first-completion 'word-or-paren-or-punct)
                       (not (eql 1 syn)))))
         (completion-at-point))