From a128ab5a906aa28687814aea3073f32ab0427188 Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 25 Apr 2006 05:27:07 +0000 Subject: [PATCH] Fixed. --- epg.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epg.el b/epg.el index 98bc0e3..0deb04a 100644 --- a/epg.el +++ b/epg.el @@ -526,10 +526,10 @@ This function is for internal use only." ;; error response from it. Set it here. (unless (epg-context-result-for epg-context 'error) (if (string-match "\\`exited abnormally with code \\(.*\\)\n" status) - (epg-context-result-for + (epg-context-set-result-for epg-context 'error (list (cons 'exit (string-to-number (match-string 1 status))))) - (epg-context-result-for epg-context 'error + (epg-context-set-result-for epg-context 'error (list (cons 'signal status)))))))) (defun epg-read-output (context) -- 1.7.10.4