From c1babcf7986279159bdb80e02726adf8c96cae83 Mon Sep 17 00:00:00 2001 From: ueno Date: Sun, 24 Sep 2006 00:15:21 +0000 Subject: [PATCH] Fixed. --- epg.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/epg.el b/epg.el index 0f0b133..85bb3fa 100644 --- a/epg.el +++ b/epg.el @@ -1590,7 +1590,8 @@ If you are unsure, use synchronous version of this function (if (epg-data-file signed-text) (epg--start context (list "--verify" "--" (epg-data-file signature) (epg-data-file signed-text))) - (epg--start context (list "--verify" (epg-data-file signature) "-")) + (epg--start context (list "--verify" "--" (epg-data-file signature) + "-")) (if (eq (process-status (epg-context-process context)) 'run) (process-send-string (epg-context-process context) (epg-data-string signed-text))) -- 1.7.10.4