Function: org-cite-try-load-processor

org-cite-try-load-processor is a byte-compiled function defined in oc.el.gz.

Signature

(org-cite-try-load-processor NAME)

Documentation

Try loading citation processor NAME if unavailable.

NAME is a symbol. When the NAME processor is unregistered, try loading "oc-NAME" library beforehand, then cross fingers.

Source Code

;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite-try-load-processor (name)
  "Try loading citation processor NAME if unavailable.
NAME is a symbol.  When the NAME processor is unregistered, try
loading \"oc-NAME\" library beforehand, then cross fingers."
  (unless (org-cite-get-processor name)
    (require (intern (format "oc-%s" name)) nil t)))