Mercurial > emacs
comparison lisp/simple.el @ 67243:4f8e0edba613
(transient-mark-mode, line-number-mode)
(column-number-mode, size-indication-mode): Remove `:require nil'.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Fri, 02 Dec 2005 03:31:21 +0000 |
parents | 818361523ce8 |
children | 8aa8220db142 |
comparison
equal
deleted
inserted
replaced
67242:2e240c06e087 | 67243:4f8e0edba613 |
---|---|
3258 \\[comment-dwim], \\[flush-lines], \\[keep-lines], \ | 3258 \\[comment-dwim], \\[flush-lines], \\[keep-lines], \ |
3259 \\[query-replace], \\[query-replace-regexp], \\[ispell], and \\[undo]. | 3259 \\[query-replace], \\[query-replace-regexp], \\[ispell], and \\[undo]. |
3260 Invoke \\[apropos-documentation] and type \"transient\" or | 3260 Invoke \\[apropos-documentation] and type \"transient\" or |
3261 \"mark.*active\" at the prompt, to see the documentation of | 3261 \"mark.*active\" at the prompt, to see the documentation of |
3262 commands which are sensitive to the Transient Mark mode." | 3262 commands which are sensitive to the Transient Mark mode." |
3263 :global t :group 'editing-basics :require nil) | 3263 :global t :group 'editing-basics) |
3264 | 3264 |
3265 (defvar widen-automatically t | 3265 (defvar widen-automatically t |
3266 "Non-nil means it is ok for commands to call `widen' when they want to. | 3266 "Non-nil means it is ok for commands to call `widen' when they want to. |
3267 Some commands will do this in order to go to positions outside | 3267 Some commands will do this in order to go to positions outside |
3268 the current accessible part of the buffer. | 3268 the current accessible part of the buffer. |
4228 in the mode line. | 4228 in the mode line. |
4229 | 4229 |
4230 Line numbers do not appear for very large buffers and buffers | 4230 Line numbers do not appear for very large buffers and buffers |
4231 with very long lines; see variables `line-number-display-limit' | 4231 with very long lines; see variables `line-number-display-limit' |
4232 and `line-number-display-limit-width'." | 4232 and `line-number-display-limit-width'." |
4233 :init-value t :global t :group 'editing-basics :require nil) | 4233 :init-value t :global t :group 'editing-basics) |
4234 | 4234 |
4235 (define-minor-mode column-number-mode | 4235 (define-minor-mode column-number-mode |
4236 "Toggle Column Number mode. | 4236 "Toggle Column Number mode. |
4237 With arg, turn Column Number mode on iff arg is positive. | 4237 With arg, turn Column Number mode on iff arg is positive. |
4238 When Column Number mode is enabled, the column number appears | 4238 When Column Number mode is enabled, the column number appears |
4239 in the mode line." | 4239 in the mode line." |
4240 :global t :group 'editing-basics :require nil) | 4240 :global t :group 'editing-basics) |
4241 | 4241 |
4242 (define-minor-mode size-indication-mode | 4242 (define-minor-mode size-indication-mode |
4243 "Toggle Size Indication mode. | 4243 "Toggle Size Indication mode. |
4244 With arg, turn Size Indication mode on iff arg is positive. When | 4244 With arg, turn Size Indication mode on iff arg is positive. When |
4245 Size Indication mode is enabled, the size of the accessible part | 4245 Size Indication mode is enabled, the size of the accessible part |
4246 of the buffer appears in the mode line." | 4246 of the buffer appears in the mode line." |
4247 :global t :group 'editing-basics :require nil) | 4247 :global t :group 'editing-basics) |
4248 | 4248 |
4249 (defgroup paren-blinking nil | 4249 (defgroup paren-blinking nil |
4250 "Blinking matching of parens and expressions." | 4250 "Blinking matching of parens and expressions." |
4251 :prefix "blink-matching-" | 4251 :prefix "blink-matching-" |
4252 :group 'paren-matching) | 4252 :group 'paren-matching) |