aboutsummaryrefslogtreecommitdiff
path: root/org-link-edit.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-04-20 22:05:18 -0400
committerKyle Meyer <kyle@kyleam.com>2020-04-20 22:07:22 -0400
commitd0954d8377932c6a3f022ff4cdd4941492c5fcc8 (patch)
treeeed6f50a9e6290fb360d0f2e148b414c75d2d3d0 /org-link-edit.el
parent0f0da1fc59ccd7d6d4624581e665d7e937fcb02f (diff)
downloadorg-link-edit-d0954d8377932c6a3f022ff4cdd4941492c5fcc8.tar.gz
Drop an org-link-unescape call
This is a port of cc7c4a673 (Rationalize `org-link-(un)escape', 2019-02-27) from the Org mode repository, which I should have taken in at the same time I ported other changes in 819a6a3. Discussion of the link encoding change is at <https://yhetil.org/orgmode/87tvguyohn.fsf@nicolasgoaziou.fr/>.
Diffstat (limited to 'org-link-edit.el')
-rw-r--r--org-link-edit.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/org-link-edit.el b/org-link-edit.el
index d4d6f5e..462fe0c 100644
--- a/org-link-edit.el
+++ b/org-link-edit.el
@@ -94,7 +94,7 @@ The list includes
((looking-at org-link-plain-re)
(list (match-beginning 0)
(match-end 0)
- (org-link-unescape (match-string-no-properties 0))
+ (match-string-no-properties 0)
nil))
(t
(error "What am I looking at?"))))))