Function: org-cite-list-bibliography-files

org-cite-list-bibliography-files is a byte-compiled function defined in oc.el.gz.

Signature

(org-cite-list-bibliography-files)

Documentation

List all bibliography files defined in the buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
;;; Generic tools
(defun org-cite-list-bibliography-files ()
  "List all bibliography files defined in the buffer."
  (delete-dups
   (append (mapcar (lambda (value)
		     (pcase value
		       (`(,f . ,d)
                        (expand-file-name (org-strip-quotes f) d))))
		   (pcase (org-collect-keywords
                           '("BIBLIOGRAPHY") nil '("BIBLIOGRAPHY"))
		     (`(("BIBLIOGRAPHY" . ,pairs)) pairs)))
	   org-cite-global-bibliography)))