From a2a14a16090df6e021467b0501b20e3d04db6f78 Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 18 Apr 2006 08:45:50 +0000 Subject: [PATCH] Not specify --yes. --- epg.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/epg.el b/epg.el index fcff786..4ed5650 100644 --- a/epg.el +++ b/epg.el @@ -33,6 +33,8 @@ :group 'epg :type 'string) +(defconst epg-version-number "0.0.0") + (defvar epg-user-id nil "GnuPG ID of your default identity.") @@ -402,8 +404,7 @@ This function is for internal use only." "Start `epg-gpg-program' in a subprocess with given ARGS." (let* ((args (append (list "--no-tty" "--status-fd" "1" - "--command-fd" "0" - "--yes") + "--command-fd" "0") (if (epg-context-armor context) '("--armor")) (if (epg-context-textmode context) '("--textmode")) (if (epg-context-output-file context) -- 1.7.10.4