* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)

This commit is contained in:
Glenn Morris 2011-10-24 13:37:03 -04:00
parent fbecbfb92b
commit c1ebb47e3d
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2011-10-24 Glenn Morris <rgm@gnu.org>
* emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
2011-10-24 Michael Albinus <michael.albinus@gmx.de> 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
* notifications.el: Add the requirement of a running D-Bus session * notifications.el: Add the requirement of a running D-Bus session

View file

@ -94,8 +94,9 @@ Optional LIGHTER is displayed in the modeline when the mode is on.
Optional KEYMAP is the default keymap bound to the mode keymap. Optional KEYMAP is the default keymap bound to the mode keymap.
If non-nil, it should be a variable name (whose value is a keymap), If non-nil, it should be a variable name (whose value is a keymap),
or an expression that returns either a keymap or a list of or an expression that returns either a keymap or a list of
arguments for `easy-mmode-define-keymap'. If KEYMAP is not a symbol, arguments for `easy-mmode-define-keymap'. If you supply a KEYMAP
this also defines the variable MODE-map. argument that is not a symbol, this macro defines the variable
MODE-map and gives it the value that KEYMAP specifies.
BODY contains code to execute each time the mode is enabled or disabled. BODY contains code to execute each time the mode is enabled or disabled.
It is executed after toggling the mode, and before running MODE-hook. It is executed after toggling the mode, and before running MODE-hook.