Function: epg--status-PROGRESS
epg--status-PROGRESS is a byte-compiled function defined in epg.el.gz.
Signature
(epg--status-PROGRESS CONTEXT STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
(defun epg--status-PROGRESS (context string)
(if (and (epg-context-progress-callback context)
(string-match "\\`\\([^ ]+\\) \\([^ ]\\) \\([0-9]+\\) \\([0-9]+\\)"
string))
(funcall (car (epg-context-progress-callback context))
context
(match-string 1 string)
(match-string 2 string)
(string-to-number (match-string 3 string))
(string-to-number (match-string 4 string))
(cdr (epg-context-progress-callback context)))))