1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

(Minor Mode Conventions): Use custom-set-minor-mode.

This commit is contained in:
Stefan Monnier 2005-11-16 17:14:37 +00:00
parent 042c6fb7c7
commit cbad4a9ef8
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
* modes.texi (Minor Mode Conventions): Use custom-set-minor-mode.
2005-11-06 Richard M. Stallman <rms@gnu.org>
* files.texi (Magic File Names): find-file-name-handler checks the
@ -31,9 +35,9 @@
2005-10-27 Masatake YAMATO <jet@gyve.org>
* minibuf.texi (Completion Commands):
* minibuf.texi (Completion Commands):
Write about new optional argument for `display-completion-list'.
2005-10-23 Richard M. Stallman <rms@gnu.org>
* display.texi (Overlay Arrow): Clarify about local bindings of

View File

@ -1327,8 +1327,7 @@ enable the mode. For example:
"Toggle msb-mode.
Setting this variable directly does not take effect;
use either \\[customize] or the function `msb-mode'."
:set (lambda (symbol value)
(msb-mode (or value 0)))
:set 'custom-set-minor-mode
:initialize 'custom-initialize-default
:version "20.4"
:type 'boolean