summaryrefslogtreecommitdiff
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-09-14 23:55:31 +0000
committerRichard M. Stallman <rms@gnu.org>2006-09-14 23:55:31 +0000
commitefeb22bf0a6e882ac2a424ddfa3554a309c862d2 (patch)
tree0980f4e71e3de329e0d0b7b38bacfbca2625e668 /lisp/simple.el
parent6d9688261e0f5e7a7b3301c6882a4816d2bf8dce (diff)
downloademacs-efeb22bf0a6e882ac2a424ddfa3554a309c862d2.tar.gz
(line-number-mode): Group mode-line instead of editing-basics.
(column-number-mode, size-indication-mode): Likewise.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index f87b2c49589..ba80ebcb9d1 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4366,21 +4366,21 @@ in the mode line.
Line numbers do not appear for very large buffers and buffers
with very long lines; see variables `line-number-display-limit'
and `line-number-display-limit-width'."
- :init-value t :global t :group 'editing-basics)
+ :init-value t :global t :group 'mode-line)
(define-minor-mode column-number-mode
"Toggle Column Number mode.
With arg, turn Column Number mode on iff arg is positive.
When Column Number mode is enabled, the column number appears
in the mode line."
- :global t :group 'editing-basics)
+ :global t :group 'mode-line)
(define-minor-mode size-indication-mode
"Toggle Size Indication mode.
With arg, turn Size Indication mode on iff arg is positive. When
Size Indication mode is enabled, the size of the accessible part
of the buffer appears in the mode line."
- :global t :group 'editing-basics)
+ :global t :group 'mode-line)
(defgroup paren-blinking nil
"Blinking matching of parens and expressions."