emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 4f1c878 1/4: oc: Fix `org-cite--try-load-processor'


From: ELPA Syncer
Subject: [elpa] externals/org 4f1c878 1/4: oc: Fix `org-cite--try-load-processor'
Date: Sun, 5 Dec 2021 13:57:31 -0500 (EST)

branch: externals/org
commit 4f1c878d9aeb66a495731df86acd6f1f9ec91d51
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Commit: Nicolas Goaziou <mail@nicolasgoaziou.fr>

    oc: Fix `org-cite--try-load-processor'
    
    * lisp/oc.el (org-cite--try-load-processor): Add missing `intern'
    call.
---
 lisp/oc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/oc.el b/lisp/oc.el
index e8baa58..75f7eda 100644
--- a/lisp/oc.el
+++ b/lisp/oc.el
@@ -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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]