diff options
| author | Chong Yidong | 2010-12-04 16:15:17 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-12-04 16:15:17 -0500 |
| commit | e408289fa80874b9a4d6151bfe818b6300b9886f (patch) | |
| tree | e29743f4dedceb72f17c439140c335be2303d729 /lisp | |
| parent | bdef6a77401ddff3bdbbeb3b7fcbbfa4c0d14152 (diff) | |
| download | emacs-e408289fa80874b9a4d6151bfe818b6300b9886f.tar.gz emacs-e408289fa80874b9a4d6151bfe818b6300b9886f.zip | |
* simple.el (transient-mark-mode): Doc fix (Bug#7465).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 20 |
2 files changed, 15 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index aaa55e9abfe..18bf0a40391 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-12-04 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * simple.el (transient-mark-mode): Doc fix (Bug#7465). | ||
| 4 | |||
| 1 | 2010-12-04 Eli Zaretskii <eliz@gnu.org> | 5 | 2010-12-04 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * files.el (file-relative-name): Handle UNC file names on | 7 | * files.el (file-relative-name): Handle UNC file names on |
diff --git a/lisp/simple.el b/lisp/simple.el index 3f4e12133b5..2946da3cdc6 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3916,15 +3916,17 @@ 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. |