mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-01 08:17:38 +00:00
emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Make
the lines in the generated doc string shorter. (Bug#4668)
This commit is contained in:
parent
f2ec0e5e49
commit
af414f10d8
@ -1,3 +1,8 @@
|
|||||||
|
2010-01-02 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
|
* emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Make
|
||||||
|
the lines in the generated doc string shorter. (Bug#4668)
|
||||||
|
|
||||||
2010-01-02 Ryan Yeske <rcyeske@gmail.com>
|
2010-01-02 Ryan Yeske <rcyeske@gmail.com>
|
||||||
|
|
||||||
* net/rcirc.el: Add follow-link binding (Bug#4738).
|
* net/rcirc.el: Add follow-link binding (Bug#4738).
|
||||||
|
@ -326,9 +326,13 @@ call another major mode in their body."
|
|||||||
(make-variable-buffer-local ',MODE-major-mode)
|
(make-variable-buffer-local ',MODE-major-mode)
|
||||||
;; The actual global minor-mode
|
;; The actual global minor-mode
|
||||||
(define-minor-mode ,global-mode
|
(define-minor-mode ,global-mode
|
||||||
|
;; Very short lines to avoid too long lines in the generated
|
||||||
|
;; doc string.
|
||||||
,(format "Toggle %s in every possible buffer.
|
,(format "Toggle %s in every possible buffer.
|
||||||
With prefix ARG, turn %s on if and only if ARG is positive.
|
With prefix ARG, turn %s on if and only if
|
||||||
%s is enabled in all buffers where `%s' would do it.
|
ARG is positive.
|
||||||
|
%s is enabled in all buffers where
|
||||||
|
\`%s' would do it.
|
||||||
See `%s' for more information on %s."
|
See `%s' for more information on %s."
|
||||||
pretty-name pretty-global-name pretty-name turn-on
|
pretty-name pretty-global-name pretty-name turn-on
|
||||||
mode pretty-name)
|
mode pretty-name)
|
||||||
|
Loading…
Reference in New Issue
Block a user