]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (region-bounds): Doc fix. (Bug#33168)
authorEli Zaretskii <eliz@gnu.org>
Sat, 27 Oct 2018 10:50:34 +0000 (13:50 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 27 Oct 2018 10:50:34 +0000 (13:50 +0300)
lisp/simple.el

index ba39a49a44eea560eccae8c9786ff5e4d06404cd..0e5dadc81f55243592c51046910855bd41029645 100644 (file)
@@ -5489,8 +5489,10 @@ also checks the value of `use-empty-active-region'."
        (progn (cl-assert (mark)) t)))
 
 (defun region-bounds ()
-  "Return the boundaries of the region as a pair of positions.
-Value is a list of cons cells of the form (START . END)."
+  "Return the boundaries of the region.
+Value is a list of one or more cons cells of the form (START . END).
+It will have more than one cons cell when the region is non-contiguous,
+see `region-noncontiguous-p' and `extract-rectangle-bounds'."
   (funcall region-extract-function 'bounds))
 
 (defun region-noncontiguous-p ()