]> git.eshelyaron.com Git - emacs.git/commitdiff
(define-minor-mode): Docstring fix.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 25 Jan 2001 15:31:14 +0000 (15:31 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 25 Jan 2001 15:31:14 +0000 (15:31 +0000)
lisp/ChangeLog
lisp/emacs-lisp/easy-mmode.el

index 756c7aa7ae5701991d43dfac4261e682ee065fb0..15fdc31cc10ec10a51a56dc67c03cccc7dab4af2 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-25  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
+
 2001-01-25  Dave Love  <fx@gnu.org>
 
        * loadup.el: Preload international/ccl for utf-8.
index 87ce0cc9c2252b8ba618dc24282378be98c19648..0c0d50a3ac95500f0bcdb48d8a34a135b9b56e69 100644 (file)
@@ -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'."