Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
af414f10
Commit
af414f10
authored
Jan 02, 2010
by
Eli Zaretskii
Browse files
emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Make
the lines in the generated doc string shorter. (Bug#4668)
parent
f2ec0e5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/easy-mmode.el
lisp/emacs-lisp/easy-mmode.el
+6
-2
No files found.
lisp/ChangeLog
View file @
af414f10
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).
...
...
lisp/emacs-lisp/easy-mmode.el
View file @
af414f10
...
@@ -326,9 +326,13 @@ call another major mode in their body."
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment