Function: use-region-beginning
use-region-beginning is a byte-compiled function defined in
simple.el.gz.
Signature
(use-region-beginning)
Documentation
Return the start of the region if use-region-p returns non-nil.
This is a convenience function to use in interactive forms of
commands that need to act on the region when it is active.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun use-region-beginning ()
"Return the start of the region if `use-region-p' returns non-nil.
This is a convenience function to use in `interactive' forms of
commands that need to act on the region when it is active."
(and (use-region-p) (region-beginning)))