diff options
| author | Lute Kamstra | 2005-04-04 09:29:08 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-04-04 09:29:08 +0000 |
| commit | 6de274aa32896bb8197c4a73c5ee5419acb6a103 (patch) | |
| tree | addd022269167699c7df40b8021704c0049ea8eb /lisp | |
| parent | fb1668f9cf45bde1b361f3c0d74df2c5d89cb159 (diff) | |
| download | emacs-6de274aa32896bb8197c4a73c5ee5419acb6a103.tar.gz emacs-6de274aa32896bb8197c4a73c5ee5419acb6a103.zip | |
(refill-mode): Specify :group.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/textmodes/refill.el | 4 |
1 files changed, 3 insertions, 1 deletions
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. | |||
| 221 | When Refill mode is on, the current paragraph will be formatted when | 221 | When Refill mode is on, the current paragraph will be formatted when |
| 222 | changes are made within it. Self-inserting characters only cause | 222 | changes are made within it. Self-inserting characters only cause |
| 223 | refilling if they would cause auto-filling." | 223 | refilling if they would cause auto-filling." |
| 224 | nil " Refill" '(("\177" . backward-delete-char-untabify)) | 224 | :group 'refill |
| 225 | :lighter " Refill" | ||
| 226 | :keymap '(("\177" . backward-delete-char-untabify)) | ||
| 225 | ;; Remove old state if necessary | 227 | ;; Remove old state if necessary |
| 226 | (when refill-ignorable-overlay | 228 | (when refill-ignorable-overlay |
| 227 | (delete-overlay refill-ignorable-overlay) | 229 | (delete-overlay refill-ignorable-overlay) |