1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-26 07:29:17 +02:00

Merge pull request #51 from jleechpe/org-make-link-fix

* org-mu4e: Remove org-make-link, it is no longer used in Org-Mode
This commit is contained in:
Dirk-Jan C. Binnema 2012-08-22 09:24:55 -07:00
commit 3d2f0df4a4

View File

@ -65,7 +65,7 @@
desc link)
(org-store-link-props :type "mu4e" :query query)
(setq
desc (org-make-link "mu4e:query:" query)
desc (concat "mu4e:query:" query)
link desc)
(org-add-link-props :link link :description desc)
link))
@ -76,7 +76,7 @@
link)
(org-store-link-props :type "mu4e" :link link
:message-id msgid)
(setq link (org-make-link "mu4e:msgid:" msgid))
(setq link (concat "mu4e:msgid:" msgid))
(org-add-link-props :link link
:description (funcall org-mu4e-link-desc-func msg))
link))))