comparison 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
comparison
equal deleted inserted replaced
47463:2b213bd55695 47464:b8282a873821
2503 \\[comment-dwim], \\[flush-lines], \\[ispell], \\[keep-lines], 2503 \\[comment-dwim], \\[flush-lines], \\[ispell], \\[keep-lines],
2504 \\[query-replace], \\[query-replace-regexp], and \\[undo]. Invoke 2504 \\[query-replace], \\[query-replace-regexp], and \\[undo]. Invoke
2505 \\[apropos-documentation] and type \"transient\" or \"mark.*active\" at 2505 \\[apropos-documentation] and type \"transient\" or \"mark.*active\" at
2506 the prompt, to see the documentation of commands which are sensitive to 2506 the prompt, to see the documentation of commands which are sensitive to
2507 the Transient Mark mode." 2507 the 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."
2512 (interactive) 2512 (interactive)
2513 ;; Pop entries which refer to non-existent buffers. 2513 ;; Pop entries which refer to non-existent buffers.
3283 in the mode line. 3283 in the mode line.
3284 3284
3285 Line numbers do not appear for very large buffers and buffers 3285 Line numbers do not appear for very large buffers and buffers
3286 with very long lines; see variables `line-number-display-limit' 3286 with very long lines; see variables `line-number-display-limit'
3287 and `line-number-display-limit-width'." 3287 and `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.
3292 With arg, turn Column Number mode on iff arg is positive. 3292 With arg, turn Column Number mode on iff arg is positive.
3293 When Column Number mode is enabled, the column number appears 3293 When Column Number mode is enabled, the column number appears
3294 in the mode line." 3294 in 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."
3299 :prefix "blink-matching-" 3299 :prefix "blink-matching-"
3300 :group 'paren-matching) 3300 :group 'paren-matching)