Parcourir la source

org-element: Small fix

* contrib/lisp/org-element.el (org-element-radio-target-interpreter):
  Correct interpreter for radio targets.
Nicolas Goaziou il y a 13 ans
Parent
commit
bb39f7ea20
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      contrib/lisp/org-element.el

+ 1 - 1
contrib/lisp/org-element.el

@@ -2033,7 +2033,7 @@ Assume point is at the radio target."
 (defun org-element-radio-target-interpreter (target contents)
   "Interpret TARGET object as Org syntax.
 CONTENTS is the contents of the object."
-  (concat ">"))
+  (concat "<<<" contents ">>>"))
 
 (defun org-element-radio-target-successor (limit)
   "Search for the next radio-target and return position.