Function: epg-data-file

epg-data-file is a byte-compiled function defined in epg.el.gz.

Signature

(epg-data-file epg-data-file X)

Documentation

Access slot "file" of epg-data struct X.

Source Code

;; Defined in /usr/src/emacs/lisp/epg.el.gz
;;; Structs
;;;; Data Struct

(cl-defstruct (epg-data
               (:constructor nil)
               (:constructor epg-make-data-from-file (file))
               (:constructor epg-make-data-from-string (string))
               (:copier nil)
               (:predicate nil))
  (file nil :read-only t)
  (string nil :read-only t))