From cd5e2d94d8949be6ac1d8d5e20935c25bb4e5f49 Mon Sep 17 00:00:00 2001 From: Bastien Date: Fri, 30 Sep 2016 10:00:18 +0200 Subject: [PATCH] Fix link (un)escaping. Thanks for David Bremner for reporting this and proposing this fix. --- contrib/lisp/org-notmuch.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contrib/lisp/org-notmuch.el b/contrib/lisp/org-notmuch.el index 712ec5a9b..e19d67c0d 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))