Explorar o código

org-element: Small fix

* contrib/lisp/org-element.el (org-element-radio-target-interpreter):
  Correct interpreter for radio targets.
Nicolas Goaziou %!s(int64=13) %!d(string=hai) anos
pai
achega
bb39f7ea20
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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.