diff lisp/simple.el @ 47464:b8282a873821

(transient-mark-mode, line-number-mode, column-number-mode): Pass an explicit `:require nil' argument.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 13 Sep 2002 14:21:45 +0000
parents 1bbef0cbbf67
children 1362c8e5d501
line wrap: on
line diff
--- a/lisp/simple.el	Fri Sep 13 14:16:02 2002 +0000
+++ b/lisp/simple.el	Fri Sep 13 14:21:45 2002 +0000
@@ -2505,7 +2505,7 @@
 \\[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)
+  :global t :group 'editing-basics :require nil)
 
 (defun pop-global-mark ()
   "Pop off global mark ring and jump to the top location."
@@ -3285,14 +3285,14 @@
 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 'editing-basics :require nil)
 
 (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 'editing-basics :require nil)
 
 (defgroup paren-blinking nil
   "Blinking matching of parens and expressions."