From: ueno Date: Sun, 3 Sep 2006 02:49:01 +0000 (+0000) Subject: Fixed. X-Git-Tag: emiko-1_14_1-epg-0_0_5~1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=fff5c762e017a3919fdfedd93c7bf90f1adfc9a5;p=elisp%2Fsemi.git Fixed. --- diff --git a/mime-edit.el b/mime-edit.el index 80e849e..e8d5961 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -114,22 +114,22 @@ (require 'signature) (require 'alist) -(autoload 'pgg-encrypt-region "pgg" - "PGP encryption of current region." t) -(autoload 'pgg-sign-region "pgg" - "PGP signature of current region." t) -(autoload 'pgg-insert-key "pgg" - "Insert PGP public key at point." t) - (defvar mime-edit-pgp-use (condition-case nil (progn (require 'epg-config) (epg-check-configuration (epg-configuration)) + (autoload 'epg-make-context "epg") 'epg) (error (require 'pgg-def) (require 'pgg-parse) + (autoload 'pgg-encrypt-region "pgg" + "PGP encryption of current region." t) + (autoload 'pgg-sign-region "pgg" + "PGP signature of current region." t) + (autoload 'pgg-insert-key "pgg" + "Insert PGP public key at point." t) 'pgg)) "Which PGG library to be used in MIME-Edit.")