From: Lute Kamstra Date: Mon, 4 Apr 2005 09:29:08 +0000 (+0000) Subject: (refill-mode): Specify :group. X-Git-Tag: ttn-vms-21-2-B4~1225 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6de274aa32896bb8197c4a73c5ee5419acb6a103;p=emacs.git (refill-mode): Specify :group. --- diff --git a/lisp/textmodes/refill.el b/lisp/textmodes/refill.el index 9979f4a3e27..d5f3b19cc9c 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)