[gnus git] branch master updated: =1= auth-source.el (auth-source-secrets-search): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 7c3885edea46de1982c00da9c82e0e1a65cf1d46 (commit)
from 5625d4e1ca8529725b2167983e04a23df421eeed (commit)
- Log -----------------------------------------------------------------
commit 7c3885edea46de1982c00da9c82e0e1a65cf1d46
Author: Katsumi Yamaoka <[email protected]>
Date: Thu Feb 17 05:04:35 2011 +0000
auth-source.el (auth-source-secrets-search): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index aedc2a7..b5fb7e6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3,6 +3,8 @@
* auth-source.el: Bind load-path when loading EIEIO from
"gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
21.4 doesn't support, to `require'.
+ (auth-source-secrets-search): Use mm-delete-duplicates instead of
+ delete-dups that is not available in XEmacs 21.4.
2011-02-16 Raphael Kubo da Costa <[email protected]> (tiny change)
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index b5cc55f..b6ea037 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -40,6 +40,7 @@
;;; Code:
(require 'password-cache)
+(require 'mm-util)
(require 'gnus-util)
(require 'netrc)
(require 'assoc)
@@ -1052,7 +1053,7 @@ authentication tokens:
(list k (plist-get spec k))))
search-keys)))
;; needed keys (always including host, login, protocol, and secret)
- (returned-keys (delete-dups (append
+ (returned-keys (mm-delete-duplicates (append
'(:host :login :protocol :secret)
search-keys)))
(items (loop for item in (apply 'secrets-search-items coll search-spec)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 2 ++
lisp/auth-source.el | 7 ++++---
2 files changed, 6 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project