diff options
| author | Richard M. Stallman | 2006-07-09 02:02:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-07-09 02:02:03 +0000 |
| commit | b50b95ce642cfdc9f43c4fc0c0e23699a20e6bbd (patch) | |
| tree | 0e21e2a166f113da4d275efed4f52a24698e365f | |
| parent | 21662bd3eb406be1962d28a5814567045bafce29 (diff) | |
| download | emacs-b50b95ce642cfdc9f43c4fc0c0e23699a20e6bbd.tar.gz emacs-b50b95ce642cfdc9f43c4fc0c0e23699a20e6bbd.zip | |
(define-minor-mode): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 097083112c3..d4ba8d30623 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -102,8 +102,8 @@ The above three arguments can be skipped if keyword arguments are | |||
| 102 | used (see below). | 102 | used (see below). |
| 103 | 103 | ||
| 104 | BODY contains code to execute each time the mode is activated or deactivated. | 104 | BODY contains code to execute each time the mode is activated or deactivated. |
| 105 | It will be executed after any toggling but before running the hook variable | 105 | It is executed after toggling the mode, |
| 106 | `mode-HOOK'. | 106 | and before running the hook variable `mode-HOOK'. |
| 107 | Before the actual body code, you can write keyword arguments (alternating | 107 | Before the actual body code, you can write keyword arguments (alternating |
| 108 | keywords and values). These following keyword arguments are supported (other | 108 | keywords and values). These following keyword arguments are supported (other |
| 109 | keywords will be passed to `defcustom' if the minor mode is global): | 109 | keywords will be passed to `defcustom' if the minor mode is global): |