aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-04-02 19:24:26 +0000
committerLuc Teirlinck2005-04-02 19:24:26 +0000
commitab77efd0e55c661ea8fd45df28f2a39d0c46fbd8 (patch)
treef2de3ca245800be147e1510318f28e1a10f62c59
parent2a0af9db2e83cadb5159875cb21d31ba1b54f89c (diff)
downloademacs-ab77efd0e55c661ea8fd45df28f2a39d0c46fbd8.tar.gz
emacs-ab77efd0e55c661ea8fd45df28f2a39d0c46fbd8.zip
(visible-mode): Use explicit :group keyword. This changes the group
of `visible-mode-hook' from paren-blinking to editing-basics.
-rw-r--r--lisp/simple.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 753391dabe8..9f6359c5e3c 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5238,6 +5238,7 @@ Enabling Visible mode makes all invisible text temporarily visible.
5238Disabling Visible mode turns off that effect. Visible mode 5238Disabling Visible mode turns off that effect. Visible mode
5239works by saving the value of `buffer-invisibility-spec' and setting it to nil." 5239works by saving the value of `buffer-invisibility-spec' and setting it to nil."
5240 :lighter " Vis" 5240 :lighter " Vis"
5241 :group 'editing-basics
5241 (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec) 5242 (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec)
5242 (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec) 5243 (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec)
5243 (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec)) 5244 (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec))