Browse Source

org-element: Small fix

* contrib/lisp/org-element.el (org-element-radio-target-interpreter):
  Correct interpreter for radio targets.
Nicolas Goaziou 13 years ago
parent
commit
bb39f7ea20
1 changed files with 1 additions and 1 deletions
  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.