Variable: browse-url-mailto-function
browse-url-mailto-function is a customizable variable defined in
browse-url.el.gz.
Value
browse-url-mail
Documentation
Function to display mailto: links.
This variable uses the same syntax as the
browse-url-browser-function variable. If the
browse-url-mailto-function variable is nil, that variable will
be used instead.
This variable was added, or its default value changed, in Emacs 24.1.
Probably introduced at or before Emacs version 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
(defcustom browse-url-mailto-function 'browse-url-mail
"Function to display mailto: links.
This variable uses the same syntax as the
`browse-url-browser-function' variable. If the
`browse-url-mailto-function' variable is nil, that variable will
be used instead."
:type '(choice
(function-item :tag "Emacs Mail" :value browse-url-mail)
(function-item :tag "None" nil))
:version "24.1")