]> git.eshelyaron.com Git - emacs.git/commitdiff
Use equal and member instead of eq and memq
authorMattias Engdegård <mattiase@acm.org>
Fri, 16 Dec 2022 11:17:33 +0000 (12:17 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 16 Dec 2022 16:19:21 +0000 (17:19 +0100)
* lisp/cedet/semantic/complete.el (semantic-displayer-show-request):
* lisp/descr-text.el (describe-char-categories):
* lisp/mh-e/mh-identity.el (mh-select-identity):
* lisp/transient.el (transient--delay-post-command)
(transient--post-command):
* lisp/vc/vc-git.el (vc-git-create-tag):
* test/lisp/emacs-lisp/cl-lib-tests.el
(cl-lib-nth-value-test-multiple-values):
* lisp/emulation/viper-cmd.el (viper-preserve-cursor-color):
Use `equal` instead of `eq` and `member` instead of `memq` where
the comparison is with literals without guaranteed identity.
In some cases this change corrects evident bugs, in others it is
mostly cosmetic.

lisp/cedet/semantic/complete.el
lisp/descr-text.el
lisp/emulation/viper-cmd.el
lisp/mh-e/mh-identity.el
lisp/transient.el
lisp/vc/vc-git.el
test/lisp/emacs-lisp/cl-lib-tests.el

index 00fe081acb5977f878b232850285688e1052cd41..1f372804dcc4b75c4aa81c97dadeaa067872ea6e 100644 (file)
@@ -1731,7 +1731,7 @@ Display mechanism using tooltip for a list of possible completions.")
       ;; Add any tail info.
       (setq msg (concat msg msg-tail))
       ;; Display tooltip.
-      (when (not (eq msg ""))
+      (when (not (equal msg ""))
        (semantic-displayer-tooltip-show msg)))))
 
 ;;; Compatibility
index f2ffddcf70218146fd12137d301204c43a11dfba..f105f2924482db96c19fa98f3f396ee38f367a8f 100644 (file)
@@ -366,7 +366,7 @@ This function is semi-obsolete.  Use `get-char-code-property'."
 ;; description is added to the category name as a tooltip
 (defsubst describe-char-categories (category-set)
   (let ((mnemonics (category-set-mnemonics category-set)))
-    (unless (eq mnemonics "")
+    (unless (equal mnemonics "")
       (list (mapconcat
             (lambda (x)
               (let* ((c (category-docstring x))
index 26793989d0537df0cbd65a82e47600e27d9514df..3b3caaf3e3c04ffc08f318a2831f185955834a65 100644 (file)
                           viper-delete-backward-char
                           viper-join-lines
                           viper-delete-char))
-      (memq (viper-event-key last-command-event)
-           '(up down left right (meta f) (meta b)
-                (control n) (control p) (control f) (control b)))))
+      (member (viper-event-key last-command-event)
+             '(up down left right (meta f) (meta b)
+               (control n) (control p) (control f) (control b)))))
 
 (defsubst viper-insert-state-pre-command-sentinel ()
   (or (viper-preserve-cursor-color)
index bcdf91299be6c5f28c074384c6c1e3d76d802c67..2507c677462ad5eaf879ce0f661c32f23332f075 100644 (file)
@@ -141,7 +141,7 @@ See `mh-identity-list'."
            (cons '("None")
                  (mapcar #'list (mapcar #'car mh-identity-list)))
            nil t default nil default))
-    (if (eq identity "None")
+    (if (equal identity "None")
         nil
       identity)))
 
index 0919c2c3ef03b3f0eff20e88149303aa250ef536..9656ab9854a3fdd5c80b1cd3e010468e1d4fc0b9 100644 (file)
@@ -2203,7 +2203,7 @@ value.  Otherwise return CHILDREN as is."
     (unless abort-only
       (setq post-command
             (lambda () "@transient--delay-post-command"
-              (let ((act (and (not (eq (this-command-keys-vector) []))
+              (let ((act (and (not (equal (this-command-keys-vector) []))
                               (or (eq this-command command)
                                   ;; `execute-extended-command' was
                                   ;; used to call another command
@@ -2236,7 +2236,7 @@ value.  Otherwise return CHILDREN as is."
   (transient--debug 'post-command)
   (transient--with-emergency-exit
     (cond
-     ((and (eq (this-command-keys-vector) [])
+     ((and (equal (this-command-keys-vector) [])
            (= (minibuffer-depth)
               (1+ transient--minibuffer-depth)))
       (transient--suspend-override)
index b5959d535c03e5f44378ef450bdd5298dca7d862..a2288515d1655d284b896857208dd9538db9be65 100644 (file)
@@ -1661,7 +1661,8 @@ This requires git 1.8.4 or later, for the \"-L\" option of \"git log\"."
                                  (if branchp "branch" "tag"))))
          (if branchp
              (vc-git-command nil 0 nil "checkout" "-b" name
-                             (when (and start-point (not (eq start-point "")))
+                             (when (and start-point
+                                        (not (equal start-point "")))
                                start-point))
            (vc-git-command nil 0 nil "tag" name)))))
 
index b19494af7462bd02da54001529e2e1292f43a3da..c3c04b6305e506e2dd15f54ed102287376459d5a 100644 (file)
 (ert-deftest cl-lib-nth-value-test-multiple-values ()
   "While CL multiple values are an alias to list, these won't work."
   :expected-result :failed
-  (should (eq (cl-nth-value 0 '(2 3)) '(2 3)))
+  (should (equal (cl-nth-value 0 '(2 3)) '(2 3)))
   (should (= (cl-nth-value 0 1) 1))
   (should (null (cl-nth-value 1 1)))
   (should-error (cl-nth-value -1 (cl-values 2 3)) :type 'args-out-of-range)