Function: use-region-end
use-region-end is a byte-compiled function defined in compat-29.el.
Signature
(use-region-end)
Documentation
[Compatibility function for use-region-end, defined in Emacs 29.1. See
(compat) Emacs 29.1' for more details.]
Return the end of the region if use-region-p.
Source Code
;; Defined in ~/.emacs.d/elpa/compat-30.1.0.1/compat-29.el
(compat-defun use-region-end () ;; <compat-tests:use-region>
"Return the end of the region if `use-region-p'."
(and (use-region-p) (region-end)))