branch: externals-release/org
commit 18dca3478a955c391ba2a72e086d6473dafdeb8f
Author: Nicolas Goaziou <m...@nicolasgoaziou.fr>
Commit: Nicolas Goaziou <m...@nicolasgoaziou.fr>
    oc: Upon inserting citations, add a space between keys
    
    * lisp/oc.el (org-cite-make-insert-processor): Add a space in addition
    to the semicolon.
---
 lisp/oc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/oc.el b/lisp/oc.el
index f9883ba..09884f5 100644
--- a/lisp/oc.el
+++ b/lisp/oc.el
@@ -1598,7 +1598,7 @@ The generated function inserts or edit a citation at 
point.  More specifically,
                             (concat "/" style)
                           ""))
                     "")
-                  (mapconcat (lambda (k) (concat "@" k)) keys ";"))))))))
+                  (mapconcat (lambda (k) (concat "@" k)) keys "; "))))))))
 
 (defun org-cite-insert (arg)
   "Insert a citation at point.

Reply via email to