aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorChong Yidong2010-12-04 16:15:17 -0500
committerChong Yidong2010-12-04 16:15:17 -0500
commite408289fa80874b9a4d6151bfe818b6300b9886f (patch)
treee29743f4dedceb72f17c439140c335be2303d729 /lisp
parentbdef6a77401ddff3bdbbeb3b7fcbbfa4c0d14152 (diff)
downloademacs-e408289fa80874b9a4d6151bfe818b6300b9886f.tar.gz
emacs-e408289fa80874b9a4d6151bfe818b6300b9886f.zip
* simple.el (transient-mark-mode): Doc fix (Bug#7465).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/simple.el20
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 @@
12010-12-04 Chong Yidong <cyd@stupidchicken.com>
2
3 * simple.el (transient-mark-mode): Doc fix (Bug#7465).
4
12010-12-04 Eli Zaretskii <eliz@gnu.org> 52010-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.
3916The variable `highlight-nonselected-windows' controls whether to highlight 3916The variable `highlight-nonselected-windows' controls whether to highlight
3917all windows or just the selected window. 3917all windows or just the selected window.
3918 3918
3919If the value is `lambda', that enables Transient Mark mode temporarily. 3919Lisp programs may give this variable certain special values:
3920After 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
3923If the value is (only . OLDVAL), that enables Transient Mark mode 3923 normally deactivate the mark (e.g. buffer modification).
3924temporarily. After any subsequent point motion command that is not 3924
3925shift-translated, or any other action that would normally deactivate 3925- A value of (only . OLDVAL) enables Transient Mark mode
3926the 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.