Mercurial > emacs
comparison lisp/simple.el @ 111900:f475600c36d9
* simple.el (transient-mark-mode): Doc fix (Bug#7465).
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 04 Dec 2010 16:15:17 -0500 |
parents | 0f82907d5a26 |
children | 5032326a2135 |
comparison
equal
deleted
inserted
replaced
111899:3b293c5ab354 | 111900:f475600c36d9 |
---|---|
3914 | 3914 |
3915 Non-nil also enables highlighting of the region whenever the mark is active. | 3915 Non-nil also enables highlighting of the region whenever the mark is active. |
3916 The variable `highlight-nonselected-windows' controls whether to highlight | 3916 The variable `highlight-nonselected-windows' controls whether to highlight |
3917 all windows or just the selected window. | 3917 all windows or just the selected window. |
3918 | 3918 |
3919 If the value is `lambda', that enables Transient Mark mode temporarily. | 3919 Lisp programs may give this variable certain special values: |
3920 After any subsequent action that would normally deactivate the mark | 3920 |
3921 \(such as buffer modification), Transient Mark mode is turned off. | 3921 - A value of `lambda' enables Transient Mark mode temporarily. |
3922 | 3922 It is disabled again after any subsequent action that would |
3923 If the value is (only . OLDVAL), that enables Transient Mark mode | 3923 normally deactivate the mark (e.g. buffer modification). |
3924 temporarily. After any subsequent point motion command that is not | 3924 |
3925 shift-translated, or any other action that would normally deactivate | 3925 - A value of (only . OLDVAL) enables Transient Mark mode |
3926 the mark (such as buffer modification), the value of | 3926 temporarily. After any subsequent point motion command that is |
3927 `transient-mark-mode' is set to OLDVAL.") | 3927 not shift-translated, or any other action that would normally |
3928 deactivate the mark (e.g. buffer modification), the value of | |
3929 `transient-mark-mode' is set to OLDVAL.") | |
3928 | 3930 |
3929 (defvar widen-automatically t | 3931 (defvar widen-automatically t |
3930 "Non-nil means it is ok for commands to call `widen' when they want to. | 3932 "Non-nil means it is ok for commands to call `widen' when they want to. |
3931 Some commands will do this in order to go to positions outside | 3933 Some commands will do this in order to go to positions outside |
3932 the current accessible part of the buffer. | 3934 the current accessible part of the buffer. |