From feca418f098008cdb88a1fa8e6419aaa14c62db8 Mon Sep 17 00:00:00 2001 From: ueno Date: Wed, 26 Apr 2006 03:03:36 +0000 Subject: [PATCH] Fixed. --- epg.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/epg.el b/epg.el index 4a41245..b2ac8f1 100644 --- a/epg.el +++ b/epg.el @@ -602,12 +602,12 @@ This function is for internal use only." (progn (setq passphrase (funcall - epg-context (if (consp (epg-context-passphrase-callback epg-context)) (car (epg-context-passphrase-callback epg-context)) (epg-context-passphrase-callback epg-context)) + epg-context epg-key-id (if (consp (epg-context-passphrase-callback epg-context)) @@ -773,10 +773,10 @@ This function is for internal use only." (defun epg-status-PROGRESS (process string) (if (string-match "\\`\\([^ ]+\\) \\([^ ]\\) \\([0-9]+\\) \\([0-9]+\\)" string) - (funcall epg-context - (if (consp (epg-context-progress-callback epg-context)) + (funcall (if (consp (epg-context-progress-callback epg-context)) (car (epg-context-progress-callback epg-context)) (epg-context-progress-callback epg-context)) + epg-context (match-string 1 string) (match-string 2 string) (string-to-number (match-string 3 string)) -- 1.7.10.4