Function: org-export--list-bound-variables

org-export--list-bound-variables is a byte-compiled function defined in ox.el.gz.

Signature

(org-export--list-bound-variables)

Documentation

Return variables bound from BIND keywords in current buffer.

Also look for BIND keywords in setup files. The return value is an alist where associations are (VARIABLE-NAME VALUE).

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export--list-bound-variables ()
  "Return variables bound from BIND keywords in current buffer.
Also look for BIND keywords in setup files.  The return value is
an alist where associations are (VARIABLE-NAME VALUE)."
  (when org-export-allow-bind-keywords
    (pcase (org-collect-keywords '("BIND"))
      (`(("BIND" . ,values))
       (mapcar (lambda (v) (read (format "(%s)" v)))
	       values)))))