From c2c263a7913c5a3dc34bc5f41635977d2a47adf7 Mon Sep 17 00:00:00 2001 From: ueno Date: Fri, 21 Apr 2006 06:54:46 +0000 Subject: [PATCH] Silence write-region. --- epg.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epg.el b/epg.el index 5245a57..843e463 100644 --- a/epg.el +++ b/epg.el @@ -993,7 +993,7 @@ If PLAIN is nil, it returns the result as a string." (coding-system-for-write 'binary)) (unwind-protect (progn - (write-region cipher nil input-file) + (write-region cipher nil input-file nil 'quiet) (epg-context-set-output-file context (epg-make-temp-file "epg-output")) (epg-start-decrypt context (epg-make-data-from-file input-file)) @@ -1081,7 +1081,7 @@ For a normal or a clear text signature, SIGNED-TEXT should be nil." (if signed-text (progn (setq input-file (epg-make-temp-file "epg-signature")) - (write-region signature nil input-file) + (write-region signature nil input-file nil 'quiet) (epg-start-verify context (epg-make-data-from-file input-file) (epg-make-data-from-string signed-text))) -- 1.7.10.4