From fff5c762e017a3919fdfedd93c7bf90f1adfc9a5 Mon Sep 17 00:00:00 2001 From: ueno Date: Sun, 3 Sep 2006 02:49:01 +0000 Subject: [PATCH] Fixed. --- mime-edit.el | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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.") -- 1.7.10.4