(region-active-p): Doc fix.

This commit is contained in:
Chong Yidong 2008-10-21 17:01:53 +00:00
parent 5ab6aa6d19
commit c6f3e20705

View file

@ -3515,9 +3515,9 @@ This function also obeys `use-empty-active-region'."
(defun region-active-p ()
"Return t if Transient Mark mode is enabled and the mark is active.
This is NOT the best function to use to test whether a command should
operate on the region instead of the usual behavior -- for that,
use `use-region-p'."
To test whether a command should operate on the region instead of
the usual behavior, use `use-region-p' instead. That returns nil
for empty regions when `use-empty-active-region' is nil."
(and transient-mark-mode mark-active))
(defvar mark-ring nil