diff options
| author | Glenn Morris | 2011-10-24 13:37:03 -0400 |
|---|---|---|
| committer | Glenn Morris | 2011-10-24 13:37:03 -0400 |
| commit | c1ebb47e3da1840bb438372f67335df1d30c4ffd (patch) | |
| tree | 63d8d71bbde1abe5364bd3c37fcb54c055853383 | |
| parent | fbecbfb92b83a508ef299343f7dd9313086a885a (diff) | |
| download | emacs-c1ebb47e3da1840bb438372f67335df1d30c4ffd.tar.gz emacs-c1ebb47e3da1840bb438372f67335df1d30c4ffd.zip | |
* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 03e0ba3ef89..57b89b973f1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-10-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819) | ||
| 4 | |||
| 1 | 2011-10-24 Michael Albinus <michael.albinus@gmx.de> | 5 | 2011-10-24 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | * notifications.el: Add the requirement of a running D-Bus session | 7 | * notifications.el: Add the requirement of a running D-Bus session |
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index b1cb0615e43..4b6f4d634ca 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -94,8 +94,9 @@ Optional LIGHTER is displayed in the modeline when the mode is on. | |||
| 94 | Optional KEYMAP is the default keymap bound to the mode keymap. | 94 | Optional KEYMAP is the default keymap bound to the mode keymap. |
| 95 | If non-nil, it should be a variable name (whose value is a keymap), | 95 | If non-nil, it should be a variable name (whose value is a keymap), |
| 96 | or an expression that returns either a keymap or a list of | 96 | or an expression that returns either a keymap or a list of |
| 97 | arguments for `easy-mmode-define-keymap'. If KEYMAP is not a symbol, | 97 | arguments for `easy-mmode-define-keymap'. If you supply a KEYMAP |
| 98 | this also defines the variable MODE-map. | 98 | argument that is not a symbol, this macro defines the variable |
| 99 | MODE-map and gives it the value that KEYMAP specifies. | ||
| 99 | 100 | ||
| 100 | BODY contains code to execute each time the mode is enabled or disabled. | 101 | BODY contains code to execute each time the mode is enabled or disabled. |
| 101 | It is executed after toggling the mode, and before running MODE-hook. | 102 | It is executed after toggling the mode, and before running MODE-hook. |