From d0954d8377932c6a3f022ff4cdd4941492c5fcc8 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Mon, 20 Apr 2020 22:05:18 -0400 Subject: 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 . --- org-link-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?")))))) -- cgit v1.2.3