From c9b7e0ba4651e9471a4261e67b842810ddd85802 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 26 Jan 2017 22:54:29 +0100 Subject: [PATCH] Remove undocumented "message:" link type * lisp/org.el (org-link-parameters): Remove "message:" link type. Update defcustom keywords. --- lisp/org.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index b26903ddb..e3a6fa9ca 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -1786,7 +1786,6 @@ The value of this is taken from the #+LINK lines.") ("http" :follow (lambda (path) (browse-url (concat "http:" path)))) ("https" :follow (lambda (path) (browse-url (concat "https:" path)))) ("mailto" :follow (lambda (path) (browse-url (concat "mailto:" path)))) - ("message" :follow (lambda (path) (browse-url (concat "message:" path)))) ("news" :follow (lambda (path) (browse-url (concat "news:" path)))) ("shell" :follow org--open-shell-link)) "An alist of properties that defines all the links in Org mode. @@ -1827,7 +1826,9 @@ activation. The function must accept (link-start link-end path bracketp) as arguments." :group 'org-link :type '(alist :tag "Link display parameters" - :value-type plist)) + :value-type plist) + :version "26.1" + :package-version (Org . "9.1")) (defun org-link-get-parameter (type key) "Get TYPE link property for KEY.