From 6f2a7a55f5d14b42b6c72228d3d96d939764e0f6 Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 25 Apr 2006 06:05:24 +0000 Subject: [PATCH] Fixed error message. --- epg.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/epg.el b/epg.el index 0cf9722..cbb7c87 100644 --- a/epg.el +++ b/epg.el @@ -1237,7 +1237,7 @@ Otherwise, it makes a normal signature." (epg-wait-for-completion context) (if (epg-context-result-for context 'sign) (if (epg-context-result-for context 'error) - (message "Sign error: %S" + (message "Sign warning: %S" (epg-context-result-for context 'error))) (if (epg-context-result-for context 'error) (error "Sign failed: %S" @@ -1264,7 +1264,7 @@ Otherwise, it makes a normal signature." (epg-wait-for-completion context) (if (epg-context-result-for context 'sign) (if (epg-context-result-for context 'error) - (message "Sign error: %S" + (message "Sign warning: %S" (epg-context-result-for context 'error))) (if (epg-context-result-for context 'error) (error "Sign failed: %S" @@ -1333,7 +1333,7 @@ If RECIPIENTS is nil, it performs symmetric encryption." (if sign (if (epg-context-result-for context 'sign) (if (epg-context-result-for context 'error) - (message "Sign error: %S" + (message "Sign warning: %S" (epg-context-result-for context 'error))) (if (epg-context-result-for context 'error) (error "Sign failed: %S" @@ -1364,7 +1364,7 @@ If RECIPIENTS is nil, it performs symmetric encryption." (if sign (if (epg-context-result-for context 'sign) (if (epg-context-result-for context 'error) - (message "Sign error: %S" + (message "Sign warning: %S" (epg-context-result-for context 'error))) (if (epg-context-result-for context 'error) (error "Sign failed: %S" -- 1.7.10.4