Function: epa-file-handler
epa-file-handler is an autoloaded and byte-compiled function defined
in epa-file.el.gz.
Signature
(epa-file-handler OPERATION &rest ARGS)
Source Code
;; Defined in /usr/src/emacs/lisp/epa-file.el.gz
;;;###autoload
(defun epa-file-handler (operation &rest args)
(save-match-data
(let ((op (get operation 'epa-file)))
(if (and op (not epa-inhibit))
(apply op args)
(epa-file-run-real-handler operation args)))))