changeset 87029:3a6c0393929d

Require password-cache or password.
author Glenn Morris <rgm@gnu.org>
date Tue, 04 Dec 2007 04:04:57 +0000
parents 6ffab455d556
children 297e790a9310
files lisp/gnus/mml-sec.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/mml-sec.el	Tue Dec 04 04:04:41 2007 +0000
+++ b/lisp/gnus/mml-sec.el	Tue Dec 04 04:04:57 2007 +0000
@@ -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")