From: morioka Date: Tue, 21 Apr 1998 17:26:35 +0000 (+0000) Subject: Use 'ctree-set-calist-strictly instead of 'set-atype to set up for X-Git-Tag: semi-1_3_0~7 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=4d759bd4b3a7cdd6e21630fc4946e05cdc758b39;p=elisp%2Fsemi.git Use 'ctree-set-calist-strictly instead of 'set-atype to set up for 'mime-acting-condition. --- diff --git a/mime-pgp.el b/mime-pgp.el index 6e3611d..498cbf7 100644 --- a/mime-pgp.el +++ b/mime-pgp.el @@ -108,13 +108,13 @@ 'mime-preview-condition '((type . application)(subtype . pgp) (message-button . visible))) -(set-atype 'mime-acting-condition - '((type . application)(subtype . pgp) - (method . mime-method-for-application/pgp))) +(ctree-set-calist-strictly + 'mime-acting-condition '((type . application)(subtype . pgp) + (method . mime-method-for-application/pgp))) -(set-atype 'mime-acting-condition - '((type . text)(subtype . x-pgp) - (method . mime-method-for-application/pgp))) +(ctree-set-calist-strictly + 'mime-acting-condition '((type . text)(subtype . x-pgp) + (method . mime-method-for-application/pgp))) ;;; @ Internal method for multipart/signed @@ -131,9 +131,10 @@ (cdr (assq 'mode cal)) ; play-mode )) -(set-atype 'mime-acting-condition - '((type . multipart)(subtype . signed) - (method . mime-method-to-verify-multipart/signed))) +(ctree-set-calist-strictly + 'mime-acting-condition + '((type . multipart)(subtype . signed) + (method . mime-method-to-verify-multipart/signed))) ;;; @ Internal method for application/pgp-signature @@ -234,9 +235,10 @@ It should be ISO 639 2 letter language code such as en, ja, ...") (delete-file sig-file) )) -(set-atype 'mime-acting-condition - '((type . application)(subtype . pgp-signature) - (method . mime-method-to-verify-application/pgp-signature))) +(ctree-set-calist-strictly + 'mime-acting-condition + '((type . application)(subtype . pgp-signature) + (method . mime-method-to-verify-application/pgp-signature))) ;;; @ Internal method for application/pgp-encrypted @@ -258,9 +260,10 @@ It should be ISO 639 2 letter language code such as en, ja, ...") (mime-method-for-application/pgp obeg oend cal) )) -(set-atype 'mime-acting-condition - '((type . application)(subtype . pgp-encrypted) - (method . mime-method-to-decrypt-application/pgp-encrypted))) +(ctree-set-calist-strictly + 'mime-acting-condition + '((type . application)(subtype . pgp-encrypted) + (method . mime-method-to-decrypt-application/pgp-encrypted))) ;;; @ Internal method for application/pgp-keys @@ -286,9 +289,10 @@ It should be ISO 639 2 letter language code such as en, ja, ...") (kill-buffer (current-buffer)) )) -(set-atype 'mime-acting-condition - '((type . application)(subtype . pgp-keys) - (method . mime-method-to-add-application/pgp-keys))) +(ctree-set-calist-strictly + 'mime-acting-condition + '((type . application)(subtype . pgp-keys) + (method . mime-method-to-add-application/pgp-keys))) ;;; @ end