summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-03-08 01:51:31 -0500
committerKyle Meyer <kyle@kyleam.com>2016-03-08 01:51:31 -0500
commit268486a790cd81bf5d8c41a0710f5b2745c36373 (patch)
treef4f7aae0e6bdc0de65bc7bc2f7b92b9dad1758ec
parentea80df6a2efd54d8da437fecccfd7a4b98dbd1ae (diff)
downloadorg-mode-268486a790cd81bf5d8c41a0710f5b2745c36373.tar.gz
org-link-edit.el: Sync with upstream
v1.0.1 (37a5ade92)
-rw-r--r--contrib/lisp/org-link-edit.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/lisp/org-link-edit.el b/contrib/lisp/org-link-edit.el
index ffdfa26..431c934 100644
--- a/contrib/lisp/org-link-edit.el
+++ b/contrib/lisp/org-link-edit.el
@@ -1,11 +1,11 @@
-;;; org-link-edit.el --- Slurp and barf with Org links
+;;; org-link-edit.el --- Slurp and barf with Org links -*- lexical-binding: t; -*-
;; Copyright (C) 2015 Kyle Meyer <kyle@kyleam.com>
;; Author: Kyle Meyer <kyle@kyleam.com>
;; URL: https://github.com/kyleam/org-link-edit
;; Keywords: convenience
-;; Version: 1.0.0
+;; Version: 1.0.1
;; Package-Requires: ((cl-lib "0.5") (org "8.2"))
;; This program is free software; you can redistribute it and/or modify
@@ -84,14 +84,14 @@ The list includes
((looking-at org-bracket-link-regexp)
(list (match-beginning 0)
(match-end 0)
- (match-string-no-properties 1)
+ (org-link-unescape (match-string-no-properties 1))
(or (and (match-end 3)
(match-string-no-properties 3))
"")))
((looking-at org-plain-link-re)
(list (match-beginning 0)
(match-end 0)
- (match-string-no-properties 0)
+ (org-link-unescape (match-string-no-properties 0))
nil))
(t
(error "What am I looking at?"))))))