org-element: Small fix
* contrib/lisp/org-element.el (org-element-radio-target-interpreter): Correct interpreter for radio targets.
This commit is contained in:
parent
e09f92bf7e
commit
bb39f7ea20
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue