emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/gnorb 689bdd3 148/449: Use = not eq for numbers


From: Stefan Monnier
Subject: [elpa] externals/gnorb 689bdd3 148/449: Use = not eq for numbers
Date: Fri, 27 Nov 2020 23:15:28 -0500 (EST)

branch: externals/gnorb
commit 689bdd31f7c6c85b10fe5fd3778ba701eb9c4c63
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Eric Abrahamsen <eric@ericabrahamsen.net>

    Use = not eq for numbers
    
    * lisp/gnorb-utils.el (gnorb-scan-links): Don't use 'eq for numbers
---
 lisp/gnorb-utils.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/gnorb-utils.el b/lisp/gnorb-utils.el
index 5c87da1..2ce2761 100644
--- a/lisp/gnorb-utils.el
+++ b/lisp/gnorb-utils.el
@@ -168,7 +168,7 @@ the prefix arg."
   ;; This function should also *not* be responsible for unescaping
   ;; links -- we don't know what they're going to be used for, and
   ;; unescaped is safer.
-  (unless (eq (point) bound)
+  (unless (= (point) bound)
     (let (addr gnus mail bbdb)
       (while (re-search-forward org-any-link-re bound t)
        (setq addr (or (match-string-no-properties 2)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]