Function: org-entity-get

org-entity-get is a byte-compiled function defined in org-entities.el.gz.

Signature

(org-entity-get NAME)

Documentation

Get the proper association for NAME from the entity lists.

This first checks the user list, then the built-in list.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-entities.el.gz
(defsubst org-entity-get (name)
  "Get the proper association for NAME from the entity lists.
This first checks the user list, then the built-in list."
  (or (assoc name org-entities-user)
      (assoc name org-entities)))