0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 22:07:49 +00:00

oc: Fix `org-cite--try-load-processor'

* lisp/oc.el (org-cite--try-load-processor): Add missing `intern'
call.
This commit is contained in:
Nicolas Goaziou 2021-12-05 18:59:24 +01:00
parent ad53c54645
commit 4f1c878d9a

View file

@ -456,7 +456,7 @@ PROCESSOR is the name of a cite processor, as a symbol. CAPABILITY is
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 (format "oc-%s" name) nil t)))
(require (intern (format "oc-%s" name)) nil t)))
(defun org-cite--set-post-blank (datum blanks)
"Set `:post-blank' property from element or object before DATUM to BLANKS.