]> git.eshelyaron.com Git - emacs.git/commitdiff
(define-globalized-minor-mode): Improve doc string of generated command.
authorRichard M. Stallman <rms@gnu.org>
Sun, 22 Apr 2007 16:58:23 +0000 (16:58 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 22 Apr 2007 16:58:23 +0000 (16:58 +0000)
lisp/emacs-lisp/easy-mmode.el

index 8b8dc6ba09dcb5f45c6caec2595cc0685ca5e79a..2ce4ca8cf38481f6148783d959c581d7f42d8a4a 100644 (file)
@@ -327,11 +327,12 @@ call another major mode in their body."
        (make-variable-buffer-local ',MODE-major-mode)
        ;; The actual global minor-mode
        (define-minor-mode ,global-mode
-        ,(format "Toggle %s in every buffer.
+        ,(format "Toggle %s in every possible buffer.
 With prefix ARG, turn %s on if and only if ARG is positive.
-%s is actually not turned on in every buffer but only in those
-in which `%s' turns it on."
-                 pretty-name pretty-global-name pretty-name turn-on)
+%s is enabled in all buffers where `%s' would do it.
+See `%s' for more information on %s."
+                 pretty-name pretty-global-name pretty-name turn-on
+                 mode pretty-name)
         :global t ,@group ,@(nreverse extra-keywords)
 
         ;; Setup hook to handle future mode changes and new buffers.