Remove org-make-link, it is no longer used in Org-Mode

* mu4e/org-mu4e.el: Replaced org-make-link with concat to be compatible with current version of Org-Mode.
This commit is contained in:
Jonathan Leech-Pepin 2012-08-22 11:55:13 -04:00
parent d93c0bb3e2
commit e018a0347f
1 changed files with 2 additions and 2 deletions

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))))