# HG changeset patch # User Richard M. Stallman # Date 1158278131 0 # Node ID 56bb239a5814f3de8d77dc2de5e0c76365110417 # Parent 3931d05c811a055680c9a2fe73feca66312ca7d2 (line-number-mode): Group mode-line instead of editing-basics. (column-number-mode, size-indication-mode): Likewise. diff -r 3931d05c811a -r 56bb239a5814 lisp/simple.el --- a/lisp/simple.el Thu Sep 14 23:54:44 2006 +0000 +++ b/lisp/simple.el Thu Sep 14 23:55:31 2006 +0000 @@ -4366,21 +4366,21 @@ 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."