aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorLute Kamstra <[email protected]>2005-04-04 09:29:08 +0000
committerLute Kamstra <[email protected]>2005-04-04 09:29:08 +0000
commit6de274aa32896bb8197c4a73c5ee5419acb6a103 (patch)
treeaddd022269167699c7df40b8021704c0049ea8eb /lisp
parentfb1668f9cf45bde1b361f3c0d74df2c5d89cb159 (diff)
(refill-mode): Specify :group.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/refill.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/textmodes/refill.el b/lisp/textmodes/refill.el
index 9979f4a3e2..d5f3b19cc9 100644
--- a/lisp/textmodes/refill.el
+++ b/lisp/textmodes/refill.el
@@ -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)