]> git.eshelyaron.com Git - emacs.git/commitdiff
(region-active-p): Doc fix.
authorChong Yidong <cyd@stupidchicken.com>
Tue, 21 Oct 2008 17:01:53 +0000 (17:01 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 21 Oct 2008 17:01:53 +0000 (17:01 +0000)
lisp/simple.el

index 7327a88c362919e56e80f60b5c3d722456b47039..7cd321564d98647127761015c837bf06dff1dc07 100644 (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