aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2002-09-13 14:21:45 +0000
committerStefan Monnier <[email protected]>2002-09-13 14:21:45 +0000
commit82dc968ca9ed66f4137bebd026c3ece0e3b2f3f3 (patch)
treed82c2800bf82bad2b10c4198d1e3e29e48230832 /lisp/simple.el
parentc8fb3bf9c6fffc0011af10b438be7d5bd7b0a81e (diff)
(transient-mark-mode, line-number-mode, column-number-mode):
Pass an explicit `:require nil' argument.
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 fef617a0bb..d94d497180 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -2505,7 +2505,7 @@ default part of the buffer's text. Examples of such commands include
\\[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 @@ 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 '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."