]> git.eshelyaron.com Git - emacs.git/commitdiff
(refill-mode): Specify :group.
authorLute Kamstra <lute@gnu.org>
Mon, 4 Apr 2005 09:29:08 +0000 (09:29 +0000)
committerLute Kamstra <lute@gnu.org>
Mon, 4 Apr 2005 09:29:08 +0000 (09:29 +0000)
lisp/textmodes/refill.el

index 9979f4a3e279384007c150b4d4b0f732da0c92de..d5f3b19cc9c1577af979b01f23d65a9e48f1ad89 100644 (file)
@@ -221,7 +221,9 @@ With prefix arg, turn Refill mode on iff arg is positive.
 When Refill mode is on, the current paragraph will be formatted when
 changes are made within it.  Self-inserting characters only cause
 refilling if they would cause auto-filling."
-  nil " Refill" '(("\177" . backward-delete-char-untabify))
+  :group 'refill
+  :lighter " Refill"
+  :keymap '(("\177" . backward-delete-char-untabify))
   ;; Remove old state if necessary
   (when refill-ignorable-overlay
     (delete-overlay refill-ignorable-overlay)