org-lparse.el: Remove unecessary link unescape

* contrib/lisp/org-lparse.el (org-lparse-format-org-link): Remove unecessary
link unescape.
This commit is contained in:
David Maus 2011-09-11 16:57:01 +02:00 committed by Jambunathan K
parent 8e358f2cef
commit 6f69fbca0c
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ OPT-PLIST is the export options list."
(string-match "^\\.\\.?/" path)))
"file")
(t "internal")))
(setq path (org-extract-attributes (org-link-unescape path)))
(setq path (org-extract-attributes path))
(setq attr (get-text-property 0 'org-attributes path))
(setq desc1 (if (match-end 5) (match-string 5 line))
desc2 (if (match-end 2) (concat type ":" path) path)