Function: org-persist-associated-files:generic

org-persist-associated-files:generic is a macro defined in org-persist.el.gz.

Signature

(org-persist-associated-files:generic CONTAINER COLLECTION)

Documentation

List associated files in org-persist-directory of CONTAINER in COLLECTION.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-persist.el.gz
(defmacro org-persist-associated-files:generic (container collection)
  "List associated files in `org-persist-directory' of CONTAINER in COLLECTION."
  `(let* ((c (org-persist--normalize-container ,container))
          (assocf-func-symbol (intern (format "org-persist-associated-files:%s" (car c)))))
     (if (fboundp assocf-func-symbol)
         (funcall assocf-func-symbol c ,collection)
       (error "org-persist: Read function %s not defined"
              assocf-func-symbol))))