diff options
| author | Lute Kamstra | 2005-04-26 14:17:51 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-04-26 14:17:51 +0000 |
| commit | c25eec81aae90f8f592d754d29ba865bb8e98f73 (patch) | |
| tree | 3d85e25f6735602e3ba149513a6b27977626ede8 | |
| parent | 0edd2744add98b941b6a32e02ff8b3ab386e3652 (diff) | |
| download | emacs-c25eec81aae90f8f592d754d29ba865bb8e98f73.tar.gz emacs-c25eec81aae90f8f592d754d29ba865bb8e98f73.zip | |
(define-minor-mode): Fix docstring.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 547a03aac22..34a54165692 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -26,6 +26,11 @@ | |||
| 26 | 26 | ||
| 27 | 2005-04-26 Lute Kamstra <lute@gnu.org> | 27 | 2005-04-26 Lute Kamstra <lute@gnu.org> |
| 28 | 28 | ||
| 29 | * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring. | ||
| 30 | |||
| 31 | * font-lock.el (font-lock-fontify-region-function): Fix docstring. | ||
| 32 | (font-lock-comment-delimiter-face): Ditto. | ||
| 33 | |||
| 29 | * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults. | 34 | * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults. |
| 30 | 35 | ||
| 31 | 2005-04-25 Jay Belanger <belanger@truman.edu> | 36 | 2005-04-25 Jay Belanger <belanger@truman.edu> |
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 01935c9d5e8..831ffb2d576 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -95,8 +95,8 @@ BODY contains code that will be executed each time the mode is (dis)activated. | |||
| 95 | will be passed to `defcustom' if the minor mode is global): | 95 | will be passed to `defcustom' if the minor mode is global): |
| 96 | :group GROUP Custom group name to use in all generated `defcustom' forms. | 96 | :group GROUP Custom group name to use in all generated `defcustom' forms. |
| 97 | Defaults to MODE without the possible trailing \"-mode\". | 97 | Defaults to MODE without the possible trailing \"-mode\". |
| 98 | (This default may not be a valid customization group defined | 98 | Don't use this default group name unless you have written a |
| 99 | with `defgroup'. Make sure it is.) | 99 | `defgroup' to define that group properly. |
| 100 | :global GLOBAL If non-nil specifies that the minor mode is not meant to be | 100 | :global GLOBAL If non-nil specifies that the minor mode is not meant to be |
| 101 | buffer-local, so don't make the variable MODE buffer-local. | 101 | buffer-local, so don't make the variable MODE buffer-local. |
| 102 | By default, the mode is buffer-local. | 102 | By default, the mode is buffer-local. |