* lisp/simple.el (region-bounds): Doc fix. (Bug#33168)
This commit is contained in:
parent
9193db08de
commit
520c486d8b
1 changed files with 4 additions and 2 deletions
|
@ -5489,8 +5489,10 @@ also checks the value of `use-empty-active-region'."
|
||||||
(progn (cl-assert (mark)) t)))
|
(progn (cl-assert (mark)) t)))
|
||||||
|
|
||||||
(defun region-bounds ()
|
(defun region-bounds ()
|
||||||
"Return the boundaries of the region as a pair of positions.
|
"Return the boundaries of the region.
|
||||||
Value is a list of cons cells of the form (START . END)."
|
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))
|
(funcall region-extract-function 'bounds))
|
||||||
|
|
||||||
(defun region-noncontiguous-p ()
|
(defun region-noncontiguous-p ()
|
||||||
|
|
Loading…
Add table
Reference in a new issue