diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus-start.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index f82cdaa531e..7884a3e5c0d 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2010-09-05 Katsumi Yamaoka <yamaoka@jpl.org> | 1 | 2010-09-05 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 2 | ||
| 3 | * gnus-start.el (gnus-method-rank): Replace equalp with equal. | ||
| 4 | |||
| 3 | * nnmh.el (nnmh-request-list-1): Bind `file'. | 5 | * nnmh.el (nnmh-request-list-1): Bind `file'. |
| 4 | 6 | ||
| 5 | * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an | 7 | * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an |
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el index 9458e0ed52d..9325ddd2a23 100644 --- a/lisp/gnus/gnus-start.el +++ b/lisp/gnus/gnus-start.el | |||
| @@ -1772,7 +1772,7 @@ If SCAN, request a scan of that group as well." | |||
| 1772 | (let ((i 2)) | 1772 | (let ((i 2)) |
| 1773 | (block nil | 1773 | (block nil |
| 1774 | (dolist (smethod gnus-secondary-select-methods) | 1774 | (dolist (smethod gnus-secondary-select-methods) |
| 1775 | (when (equalp method smethod) | 1775 | (when (equal method smethod) |
| 1776 | (return i)) | 1776 | (return i)) |
| 1777 | (incf i)) | 1777 | (incf i)) |
| 1778 | i))) | 1778 | i))) |