summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien <bzg@gnu.org>2016-09-30 10:00:18 +0200
committerBastien <bzg@gnu.org>2016-09-30 10:00:18 +0200
commitcd5e2d94d8949be6ac1d8d5e20935c25bb4e5f49 (patch)
treec283146cba1fc7d65eb7f9ba028dc8477593748d
parent4835befde26f9b432f230165a0c48f9154abba5a (diff)
downloadorg-mode-cd5e2d94d8949be6ac1d8d5e20935c25bb4e5f49.tar.gz
Fix link (un)escaping.
Thanks for David Bremner <bremner@debian.org> for reporting this and proposing this fix.
-rw-r--r--contrib/lisp/org-notmuch.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/lisp/org-notmuch.el b/contrib/lisp/org-notmuch.el
index 712ec5a..e19d67c 100644
--- a/contrib/lisp/org-notmuch.el
+++ b/contrib/lisp/org-notmuch.el
@@ -92,8 +92,7 @@ Should accept a notmuch search string as the sole argument."
Can link to more than one message, if so all matching messages are shown."
(require 'notmuch)
- (notmuch-show (org-link-unescape search)))
-
+ (notmuch-show search))