0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-27 17:02:51 +00:00

org-element: Small fix

* contrib/lisp/org-element.el (org-element-radio-target-interpreter):
  Correct interpreter for radio targets.
This commit is contained in:
Nicolas Goaziou 2012-01-08 19:34:15 +01:00
parent e09f92bf7e
commit bb39f7ea20

View file

@ -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.