]> git.eshelyaron.com Git - emacs.git/commitdiff
(global-reveal-mode): Add group.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 18 Nov 2002 04:07:47 +0000 (04:07 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 18 Nov 2002 04:07:47 +0000 (04:07 +0000)
lisp/reveal.el

index 08b841e6f2676fdf7e3e6c8fb2bb3537123b3d9b..245c7a3c4a0437b83a146ac5e63c349698355de8 100644 (file)
@@ -156,7 +156,7 @@ Reveal mode renders invisible text around point visible again.
 Interactively, with no prefix argument, toggle the mode.
 With universal prefix ARG (or if ARG is nil) turn mode on.
 With zero or negative ARG turn mode off."
-  :global t
+  :global t :group 'reveal
   (setq-default reveal-mode global-reveal-mode)
   (if global-reveal-mode
       (progn
@@ -166,4 +166,5 @@ With zero or negative ARG turn mode off."
     (remove-hook 'post-command-hook 'reveal-post-command)))
 
 (provide 'reveal)
+
 ;;; reveal.el ends here