]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor mode doc string clarification
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 21 Aug 2020 15:15:22 +0000 (17:15 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 21 Aug 2020 15:15:22 +0000 (17:15 +0200)
* lisp/emacs-lisp/easy-mmode.el (easy-mmode--arg-docstring):
Clarify that the minor mode hook is called both when enabling and
disabling the mode (bug#34073).

lisp/emacs-lisp/easy-mmode.el

index 59e2e2e08ff0979eccbe161d8d333c6c6cc1a816..24c9e79f2c168bfb976c4b534856af2a54f513a7 100644 (file)
@@ -87,7 +87,10 @@ replacing its case-insensitive matches with the literal string in LIGHTER."
 If called interactively, enable %s if ARG is positive, and
 disable it if ARG is zero or negative.  If called from Lisp,
 also enable the mode if ARG is omitted or nil, and toggle it
-if ARG is `toggle'; disable the mode otherwise.")
+if ARG is `toggle'; disable the mode otherwise.
+
+The mode's hook is called both when the mode is enabled and when
+it is disabled.")
 
 (defun easy-mmode--mode-docstring (doc mode-pretty-name keymap-sym)
   (let ((doc (or doc (format "Toggle %s on or off.