Function: epg--status-IMPORT_PROBLEM
epg--status-IMPORT_PROBLEM is a byte-compiled function defined in
epg.el.gz.
Signature
(epg--status-IMPORT_PROBLEM CONTEXT STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
(defun epg--status-IMPORT_PROBLEM (context string)
(if (string-match "\\`\\([0-9]+\\)\\( \\(.+\\)\\)?" string)
(epg-context-set-result-for
context 'import-status
(cons (epg-make-import-status
(if (match-beginning 2)
(match-string 3 string))
(string-to-number (match-string 1 string)))
(epg-context-result-for context 'import-status)))))