mu4e-quit: improve docstring
This commit is contained in:
@ -53,9 +53,11 @@
|
|||||||
(defcustom mu4e-quit-hook nil
|
(defcustom mu4e-quit-hook nil
|
||||||
"Hook run just before quitting mu4e.
|
"Hook run just before quitting mu4e.
|
||||||
|
|
||||||
This hook runs just before mu4e performs its own cleanup.
|
This hook runs just before mu4e performs its own cleanup. For
|
||||||
|
that reason, you should not invoke any
|
||||||
|
asynchronous (non-blocking) code that expects mu4e to be running.
|
||||||
|
|
||||||
Note that it only fires when mu4e actually terminates; i.e.,
|
The hook only fires when mu4e actually terminates -- i.e.,
|
||||||
`mu4e-quit' _without_ the \"bury-only\" parameter."
|
`mu4e-quit' _without_ the \"bury-only\" parameter."
|
||||||
:type 'hook
|
:type 'hook
|
||||||
:package-version '(mu4e . "1.12.14")
|
:package-version '(mu4e . "1.12.14")
|
||||||
@ -106,7 +108,7 @@ Otherwise, completely quit mu4e, including automatic updating."
|
|||||||
|
|
||||||
(defun mu4e--check-requirements ()
|
(defun mu4e--check-requirements ()
|
||||||
"Check for the settings required for running mu4e."
|
"Check for the settings required for running mu4e."
|
||||||
(unless (>= emacs-major-version 25)
|
(unless (>= emacs-major-version 26)
|
||||||
(mu4e-error "Emacs >= 25.x is required for mu4e"))
|
(mu4e-error "Emacs >= 25.x is required for mu4e"))
|
||||||
(when (mu4e-server-properties)
|
(when (mu4e-server-properties)
|
||||||
(unless (string= (mu4e-server-version) mu4e-mu-version)
|
(unless (string= (mu4e-server-version) mu4e-mu-version)
|
||||||
|
|||||||
Reference in New Issue
Block a user