From 46d832fa69f4bbec9ff20f47cb03b9319ac9103e Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 18 Jul 2006 07:06:45 +0000 Subject: [PATCH] (epg-pgp50i--read-line): Renamed from epg-pgp50i--wait-for-line; don't allow process input. (epg-pgp50i--parse-time): New function. (epg-pgp50i--status-BAD_SIGNATURE): New function. --- ChangeLog | 4 ++++ epg-pgp50i.el | 31 +------------------------------ 2 files changed, 5 insertions(+), 30 deletions(-) diff --git a/ChangeLog b/ChangeLog index dd854a4..4b5817f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,10 @@ * epg-pgp50i.el (epg-pgp50i--process-filter): Use epg-process-filter-running instead of epg-pgp50i-status; Don't save-excursion during handler execution. + (epg-pgp50i--read-line): Renamed from epg-pgp50i--wait-for-line; + don't allow process input. + (epg-pgp50i--parse-time): New function. + (epg-pgp50i--status-BAD_SIGNATURE): New function. * epg.el (epg--process-filter): Don't save-excursion during handler execution. diff --git a/epg-pgp50i.el b/epg-pgp50i.el index c9a5bcc..2341670 100644 --- a/epg-pgp50i.el +++ b/epg-pgp50i.el @@ -236,36 +236,7 @@ (around epg-pgp50i activate) (if (eq (epg-context-protocol (ad-get-arg 0)) 'CMS) ad-do-it - (let ((context (ad-get-arg 0)) - (plain (ad-get-arg 1)) - (mode (ad-get-arg 2))) - (epg-context-set-operation context 'sign) - (epg-context-set-result context nil) - (unless (memq mode '(t detached nil normal)) - (epg-context-set-armor context t)) - (epg-pgp50i--start context - epg-pgp50i-pgps-program - (append (list (if (memq mode '(t detached)) - "-b")) - (apply #'nconc - (mapcar - (lambda (signer) - (list "-u" - (epg-sub-key-id - (car (epg-key-sub-key-list signer))))) - (epg-context-signers context))) - (if (epg-data-file plain) - (list (epg-data-file plain))))) - ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed. - (unless (eq (epg-context-protocol context) 'CMS) - (epg-wait-for-status context '("BEGIN_SIGNING"))) - (when (epg-data-string plain) - (if (eq (process-status (epg-context-process context)) 'run) - (process-send-string (epg-context-process context) - (epg-data-string plain))) - (if (eq (process-status (epg-context-process context)) 'run) - (process-send-eof (epg-context-process context))))) - )) + (error "Not implemented yet"))) (defadvice epg-start-encrypt (around epg-pgp50i activate) -- 1.7.10.4