diff options
author | Miles Bader <miles@gnu.org> | 2007-12-28 22:26:31 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-12-28 22:26:31 +0000 |
commit | 870356897e927f380841268667a92b40fb9e6782 (patch) | |
tree | ba253641e797b1d4b35bdf41bb140508dafb5440 /lisp/gnus/mml-sec.el | |
parent | b17f53abc28496125965f36147b76ea5f6a2b4fb (diff) | |
download | emacs-870356897e927f380841268667a92b40fb9e6782.tar.gz emacs-870356897e927f380841268667a92b40fb9e6782.tar.bz2 emacs-870356897e927f380841268667a92b40fb9e6782.zip |
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-967
Diffstat (limited to 'lisp/gnus/mml-sec.el')
-rw-r--r-- | lisp/gnus/mml-sec.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/gnus/mml-sec.el b/lisp/gnus/mml-sec.el index e7ecc06164f..c349631f915 100644 --- a/lisp/gnus/mml-sec.el +++ b/lisp/gnus/mml-sec.el @@ -27,8 +27,10 @@ ;;; Code: (eval-when-compile (require 'cl)) -(or (require 'password-cache nil t) - (require 'password)) + +(if (locate-library "password-cache") + (require 'password-cache) + (require 'password)) (autoload 'mml2015-sign "mml2015") (autoload 'mml2015-encrypt "mml2015") |