diff options
| author | Eli Zaretskii | 2010-01-02 19:33:54 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2010-01-02 19:33:54 +0200 |
| commit | af414f10d8a0cb08603da190612fe176e7a9f93c (patch) | |
| tree | 94fe15c6c798e997f31a03ff68b46dda33c75b03 | |
| parent | f2ec0e5e493ee518f6fa422cb4e946613d8f3fa0 (diff) | |
| download | emacs-af414f10d8a0cb08603da190612fe176e7a9f93c.tar.gz emacs-af414f10d8a0cb08603da190612fe176e7a9f93c.zip | |
emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Make
the lines in the generated doc string shorter. (Bug#4668)
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 20a6e5e2bdf..ef4ead16b85 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-01-02 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Make | ||
| 4 | the lines in the generated doc string shorter. (Bug#4668) | ||
| 5 | |||
| 1 | 2010-01-02 Ryan Yeske <rcyeske@gmail.com> | 6 | 2010-01-02 Ryan Yeske <rcyeske@gmail.com> |
| 2 | 7 | ||
| 3 | * net/rcirc.el: Add follow-link binding (Bug#4738). | 8 | * net/rcirc.el: Add follow-link binding (Bug#4738). |
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index bc97b07ddc3..704f8b15ebf 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -326,9 +326,13 @@ call another major mode in their body." | |||
| 326 | (make-variable-buffer-local ',MODE-major-mode) | 326 | (make-variable-buffer-local ',MODE-major-mode) |
| 327 | ;; The actual global minor-mode | 327 | ;; The actual global minor-mode |
| 328 | (define-minor-mode ,global-mode | 328 | (define-minor-mode ,global-mode |
| 329 | ;; Very short lines to avoid too long lines in the generated | ||
| 330 | ;; doc string. | ||
| 329 | ,(format "Toggle %s in every possible buffer. | 331 | ,(format "Toggle %s in every possible buffer. |
| 330 | With prefix ARG, turn %s on if and only if ARG is positive. | 332 | With prefix ARG, turn %s on if and only if |
| 331 | %s is enabled in all buffers where `%s' would do it. | 333 | ARG is positive. |
| 334 | %s is enabled in all buffers where | ||
| 335 | \`%s' would do it. | ||
| 332 | See `%s' for more information on %s." | 336 | See `%s' for more information on %s." |
| 333 | pretty-name pretty-global-name pretty-name turn-on | 337 | pretty-name pretty-global-name pretty-name turn-on |
| 334 | mode pretty-name) | 338 | mode pretty-name) |