From 9c69096612cee9280769874ede8ad9b2d203200f Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 5 Sep 1997 08:13:57 +0000 Subject: [PATCH] (mime-article/check-pgp-signature, mime-article/decrypt-pgp): Use `mime-entity-info-point-{min|max}' instead of `mime::content-info/point-{min|max}'. --- mime-pgp.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mime-pgp.el b/mime-pgp.el index da89dac..0d27322 100644 --- a/mime-pgp.el +++ b/mime-pgp.el @@ -5,7 +5,7 @@ ;; Author: MORIOKA Tomohiko ;; Created: 1995/12/7 ;; Renamed: 1997/2/27 from tm-pgp.el -;; Version: $Id: mime-pgp.el,v 0.20 1997-07-02 16:28:49 morioka Exp $ +;; Version: $Id: mime-pgp.el,v 0.21 1997-09-05 08:13:57 morioka Exp $ ;; Keywords: PGP, security, MIME, multimedia, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -178,8 +178,8 @@ It should be ISO 639 2 letter language code such as en, ja, ...") (sig-file (concat orig-file ".sig")) ) (save-excursion - (let ((p-min (mime::content-info/point-min oinfo)) - (p-max (mime::content-info/point-max oinfo)) + (let ((p-min (mime-entity-info-point-min oinfo)) + (p-max (mime-entity-info-point-max oinfo)) ) (set-buffer (get-buffer-create mime-temp-buffer-name)) (insert-buffer-substring raw-buf p-min p-max) @@ -259,8 +259,8 @@ It should be ISO 639 2 letter language code such as en, ja, ...") (1+ knum))) (oinfo (mime-article/rcnum-to-cinfo (cons onum rmcnum) mime::article/content-info)) - (obeg (mime::content-info/point-min oinfo)) - (oend (mime::content-info/point-max oinfo)) + (obeg (mime-entity-info-point-min oinfo)) + (oend (mime-entity-info-point-max oinfo)) ) (mime-article/view-application/pgp obeg oend cal) )) -- 1.7.10.4