diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-07-10 15:32:53 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-07-10 15:32:53 -0400 |
commit | c876b2638b4d63358801ba9f12bc034fc0799bd3 (patch) | |
tree | 2ab99ee8d7bc0d4ee2f75c130af257de094776c7 /lisp | |
parent | 7c33a0572280bdcf0583c5625cfda32f63fad56d (diff) | |
download | emacs-c876b2638b4d63358801ba9f12bc034fc0799bd3.tar.gz |
* simple.el (use-region-p): Doc fix (Bug#6607).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/simple.el | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eb8f0785b26..9a04d8bbc76 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-07-10 Chong Yidong <cyd@stupidchicken.com> + + * simple.el (use-region-p): Doc fix (Bug#6607). + 2010-07-07 Christoph Scholtes <cschol2112@gmail.com> * progmodes/python.el (python-font-lock-keywords): Add Python 2.7 diff --git a/lisp/simple.el b/lisp/simple.el index 51b33ad4fc6..89b33e9e4eb 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3629,9 +3629,9 @@ point otherwise." This is used by commands that act specially on the region under Transient Mark mode. -The return value is t provided Transient Mark mode is enabled and -the mark is active; and, when `use-empty-active-region' is -non-nil, provided the region is empty. Otherwise, the return +The return value is t if Transient Mark mode is enabled and the +mark is active; furthermore, if `use-empty-active-region' is +non-nil, the region must not be empty. Otherwise, the return value is nil. For some commands, it may be appropriate to ignore the value of |