diff options
| author | Luc Teirlinck | 2005-04-02 19:24:26 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-04-02 19:24:26 +0000 |
| commit | ab77efd0e55c661ea8fd45df28f2a39d0c46fbd8 (patch) | |
| tree | f2de3ca245800be147e1510318f28e1a10f62c59 | |
| parent | 2a0af9db2e83cadb5159875cb21d31ba1b54f89c (diff) | |
| download | emacs-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.el | 1 |
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. | |||
| 5238 | Disabling Visible mode turns off that effect. Visible mode | 5238 | Disabling Visible mode turns off that effect. Visible mode |
| 5239 | works by saving the value of `buffer-invisibility-spec' and setting it to nil." | 5239 | works 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)) |