1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-16 10:50:49 -08:00

(visible-mode): Use explicit :group keyword. This changes the group

of `visible-mode-hook' from paren-blinking to editing-basics.
This commit is contained in:
Luc Teirlinck 2005-04-02 19:24:26 +00:00
parent 2a0af9db2e
commit ab77efd0e5

View file

@ -5238,6 +5238,7 @@ Enabling Visible mode makes all invisible text temporarily visible.
Disabling Visible mode turns off that effect. Visible mode Disabling Visible mode turns off that effect. Visible mode
works by saving the value of `buffer-invisibility-spec' and setting it to nil." works by saving the value of `buffer-invisibility-spec' and setting it to nil."
:lighter " Vis" :lighter " Vis"
:group 'editing-basics
(when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec) (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec)
(setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec) (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec)
(kill-local-variable 'vis-mode-saved-buffer-invisibility-spec)) (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec))