diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-01-25 15:31:14 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-01-25 15:31:14 +0000 |
commit | a2ed96700bf6b23edd41c8d5b7fdb69af48b5c0c (patch) | |
tree | 0388de75e7ed2ab4e53377ffda767dbb57057c48 /lisp/emacs-lisp | |
parent | 7acd9c90e9ccb19de168f921ffc01d8c6537933f (diff) | |
download | emacs-a2ed96700bf6b23edd41c8d5b7fdb69af48b5c0c.tar.gz emacs-a2ed96700bf6b23edd41c8d5b7fdb69af48b5c0c.tar.bz2 emacs-a2ed96700bf6b23edd41c8d5b7fdb69af48b5c0c.zip |
(define-minor-mode): Docstring fix.
Diffstat (limited to 'lisp/emacs-lisp')
-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 87ce0cc9c22..0c0d50a3ac9 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -144,14 +144,14 @@ BODY contains code that will be executed each time the mode is (dis)activated. ,(if (not globalp) `(progn (defvar ,mode ,init-value ,(format "Non-nil if %s is enabled. -Use the function `%s' to change this variable." pretty-name mode)) +Use the command `%s' to change this variable." pretty-name mode)) (make-variable-buffer-local ',mode)) (let ((curfile (or (and (boundp 'byte-compile-current-file) byte-compile-current-file) load-file-name))) `(defcustom ,mode ,init-value - ,(format "Toggle %s on or off. + ,(format "Non-nil if %s is enabled. See the command `%s' for a description of this minor-mode. Setting this variable directly does not take effect; use either \\[customize] or the function `%s'." |