Function: epg--status-GET_BOOL
epg--status-GET_BOOL is a byte-compiled function defined in epg.el.gz.
Signature
(epg--status-GET_BOOL CONTEXT STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
;;; Status Functions
(defun epg--status-GET_BOOL (context string)
(let (inhibit-quit)
(condition-case nil
(if (funcall (or (intern-soft (concat "epg--prompt-GET_BOOL-" string))
#'epg--prompt-GET_BOOL)
context string)
(process-send-string (epg-context-process context) "y\n")
(process-send-string (epg-context-process context) "n\n"))
(quit
(epg-context-set-result-for
context 'error
(cons '(quit)
(epg-context-result-for context 'error)))
(delete-process (epg-context-process context))))))