Function: epa-file--error-add-context
epa-file--error-add-context is a byte-compiled function defined in
epa-file.el.gz.
Signature
(epa-file--error-add-context ERROR CONTEXT)
Documentation
Append CONTEXT to ERROR data by side effect.
Source Code
;; Defined in /usr/src/emacs/lisp/epa-file.el.gz
(defun epa-file--error-add-context (error context)
"Append CONTEXT to ERROR data by side effect."
(setf (cdr error) (append (cdr error) (list context))))