aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-09-13 14:21:45 +0000
committerStefan Monnier2002-09-13 14:21:45 +0000
commit82dc968ca9ed66f4137bebd026c3ece0e3b2f3f3 (patch)
treed82c2800bf82bad2b10c4198d1e3e29e48230832
parentc8fb3bf9c6fffc0011af10b438be7d5bd7b0a81e (diff)
downloademacs-82dc968ca9ed66f4137bebd026c3ece0e3b2f3f3.tar.gz
emacs-82dc968ca9ed66f4137bebd026c3ece0e3b2f3f3.zip
(transient-mark-mode, line-number-mode, column-number-mode):
Pass an explicit `:require nil' argument.
-rw-r--r--lisp/simple.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index fef617a0bbc..d94d497180d 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
2505\\[apropos-documentation] and type \"transient\" or \"mark.*active\" at 2505\\[apropos-documentation] and type \"transient\" or \"mark.*active\" at
2506the prompt, to see the documentation of commands which are sensitive to 2506the prompt, to see the documentation of commands which are sensitive to
2507the Transient Mark mode." 2507the Transient Mark mode."
2508 :global t :group 'editing-basics) 2508 :global t :group 'editing-basics :require nil)
2509 2509
2510(defun pop-global-mark () 2510(defun pop-global-mark ()
2511 "Pop off global mark ring and jump to the top location." 2511 "Pop off global mark ring and jump to the top location."
@@ -3285,14 +3285,14 @@ in the mode line.
3285Line numbers do not appear for very large buffers and buffers 3285Line numbers do not appear for very large buffers and buffers
3286with very long lines; see variables `line-number-display-limit' 3286with very long lines; see variables `line-number-display-limit'
3287and `line-number-display-limit-width'." 3287and `line-number-display-limit-width'."
3288 :init-value t :global t :group 'editing-basics) 3288 :init-value t :global t :group 'editing-basics :require nil)
3289 3289
3290(define-minor-mode column-number-mode 3290(define-minor-mode column-number-mode
3291 "Toggle Column Number mode. 3291 "Toggle Column Number mode.
3292With arg, turn Column Number mode on iff arg is positive. 3292With arg, turn Column Number mode on iff arg is positive.
3293When Column Number mode is enabled, the column number appears 3293When Column Number mode is enabled, the column number appears
3294in the mode line." 3294in the mode line."
3295 :global t :group 'editing-basics) 3295 :global t :group 'editing-basics :require nil)
3296 3296
3297(defgroup paren-blinking nil 3297(defgroup paren-blinking nil
3298 "Blinking matching of parens and expressions." 3298 "Blinking matching of parens and expressions."