(gnus-method-rank): Replace equalp with equal.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 5 Sep 2010 11:51:17 +0000 (11:51 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 5 Sep 2010 11:51:17 +0000 (11:51 +0000)
lisp/ChangeLog
lisp/gnus-start.el

index 8ae7a80..205c3c7 100644 (file)
@@ -1,5 +1,7 @@
 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
 
+       * gnus-start.el (gnus-method-rank): Replace equalp with equal.
+
        * nnmh.el (nnmh-request-list-1): Bind `file'.
 
        * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
index 9458e0e..9325ddd 100644 (file)
@@ -1772,7 +1772,7 @@ If SCAN, request a scan of that group as well."
     (let ((i 2))
       (block nil
        (dolist (smethod gnus-secondary-select-methods)
-         (when (equalp method smethod)
+         (when (equal method smethod)
            (return i))
          (incf i))
        i)))