diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-04 04:04:41 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-04 04:04:41 +0000 |
commit | ec374c9157d82cd4e346cd227a714ba346457322 (patch) | |
tree | cdeb5b007f4a6c3b7c1c6b60dea0b09000797eb0 /lisp/gnus | |
parent | a9b833d39e5b8fd52341f1893b95a87c769872ef (diff) | |
download | emacs-ec374c9157d82cd4e346cd227a714ba346457322.tar.gz emacs-ec374c9157d82cd4e346cd227a714ba346457322.tar.bz2 emacs-ec374c9157d82cd4e346cd227a714ba346457322.zip |
(gnus-extract-address-components): Define for compiler.
(password-read, password-cache-add, password-cache-remove):
No need to autoload, since mml-sec requires password.
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/mml-smime.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/gnus/mml-smime.el b/lisp/gnus/mml-smime.el index 7b9f2c0bd13..07dc1ab4ccb 100644 --- a/lisp/gnus/mml-smime.el +++ b/lisp/gnus/mml-smime.el @@ -142,6 +142,8 @@ Whether the passphrase is cached at all is controlled by nil)) (goto-char (point-max))) +(defvar gnus-extract-address-components) + (defun mml-smime-openssl-sign-query () ;; query information (what certificate) from user when MML tag is ;; added, for use later by the signing process @@ -319,10 +321,7 @@ Whether the passphrase is cached at all is controlled by (autoload 'epg-context-set-passphrase-callback "epg") (autoload 'epg-configuration "epg-config") (autoload 'epg-expand-group "epg-config") - (autoload 'epa-select-keys "epa") - (autoload 'password-read "password") - (autoload 'password-cache-add "password") - (autoload 'password-cache-remove "password")) + (autoload 'epa-select-keys "epa")) (defvar mml-smime-epg-secret-key-id-list nil) |