From: Luc Teirlinck Date: Fri, 2 Dec 2005 03:31:21 +0000 (+0000) Subject: (transient-mark-mode, line-number-mode) X-Git-Tag: emacs-pretest-22.0.90~5566 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dfd8ca695d02003a267207f095adcb48d0176eea;p=emacs.git (transient-mark-mode, line-number-mode) (column-number-mode, size-indication-mode): Remove `:require nil'. --- diff --git a/lisp/simple.el b/lisp/simple.el index 673425d012e..21e7f46dbba 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3260,7 +3260,7 @@ default part of the buffer's text. Examples of such commands include Invoke \\[apropos-documentation] and type \"transient\" or \"mark.*active\" at the prompt, to see the documentation of commands which are sensitive to the Transient Mark mode." - :global t :group 'editing-basics :require nil) + :global t :group 'editing-basics) (defvar widen-automatically t "Non-nil means it is ok for commands to call `widen' when they want to. @@ -4230,21 +4230,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 :require nil) + :init-value t :global t :group 'editing-basics) (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 :require nil) + :global t :group 'editing-basics) (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 :require nil) + :global t :group 'editing-basics) (defgroup paren-blinking nil "Blinking matching of parens and expressions."