Function: epg-make-data-from-file

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

Signature

(epg-make-data-from-file FILE)

Documentation

Constructor for objects of type epg-data.

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))