From: morioka Date: Tue, 27 May 1997 03:26:23 +0000 (+0000) Subject: (mime-edit-sign-pgp-elkins): Enclose PGP-processing by X-Git-Tag: semi-0_88~9 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0a80d0be89a4dfa42f225cc9189aa4fc7e41e7b8;p=elisp%2Fsemi.git (mime-edit-sign-pgp-elkins): Enclose PGP-processing by `as-binary-process'. --- diff --git a/mime-edit.el b/mime-edit.el index 4952369..577f539 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -7,7 +7,7 @@ ;; Maintainer: MORIOKA Tomohiko ;; Created: 1994/08/21 renamed from mime.el ;; Renamed: 1997/2/21 from tm-edit.el -;; Version: $Revision: 0.81 $ +;; Version: $Revision: 0.82 $ ;; Keywords: MIME, multimedia, multilingual, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -122,7 +122,7 @@ ;;; (defconst mime-edit-RCS-ID - "$Id: mime-edit.el,v 0.81 1997-05-27 03:12:56 morioka Exp $") + "$Id: mime-edit.el,v 0.82 1997-05-27 03:26:23 morioka Exp $") (defconst mime-edit-version (get-version-string mime-edit-RCS-ID)) @@ -1605,8 +1605,9 @@ Parameter must be '(PROMPT CHOICE1 (CHOISE2 ...))." (insert (format "Content-Transfer-Encoding: %s\n" encoding)) ) (insert "\n") - (or (funcall (pgp-function 'mime-sign) - (point-min)(point-max) nil nil pgp-boundary) + (or (as-binary-process + (funcall (pgp-function 'mime-sign) + (point-min)(point-max) nil nil pgp-boundary)) (throw 'mime-edit-error 'pgp-error) ) ))))