summaryrefslogtreecommitdiff
path: root/lisp/gnus/mml-sec.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-12-04 04:04:57 +0000
committerGlenn Morris <rgm@gnu.org>2007-12-04 04:04:57 +0000
commit51588bc5745817c4a3876798dbf4d89e3899e30b (patch)
treed9a20cd63e4916b01137c5ba11ed4d23d8c92b1a /lisp/gnus/mml-sec.el
parentec374c9157d82cd4e346cd227a714ba346457322 (diff)
downloademacs-51588bc5745817c4a3876798dbf4d89e3899e30b.tar.gz
emacs-51588bc5745817c4a3876798dbf4d89e3899e30b.tar.bz2
emacs-51588bc5745817c4a3876798dbf4d89e3899e30b.zip
Require password-cache or password.
Diffstat (limited to 'lisp/gnus/mml-sec.el')
-rw-r--r--lisp/gnus/mml-sec.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/mml-sec.el b/lisp/gnus/mml-sec.el
index 29bc0d41a1b..e7ecc06164f 100644
--- a/lisp/gnus/mml-sec.el
+++ b/lisp/gnus/mml-sec.el
@@ -27,7 +27,9 @@
;;; Code:
(eval-when-compile (require 'cl))
-(require 'password)
+(or (require 'password-cache nil t)
+ (require 'password))
+
(autoload 'mml2015-sign "mml2015")
(autoload 'mml2015-encrypt "mml2015")
(autoload 'mml1991-sign "mml1991")