Function: hmouse-drag-region-active
hmouse-drag-region-active is a byte-compiled function defined in
hui-window.el.
Signature
(hmouse-drag-region-active)
Documentation
Return non-nil if drag region is active.
If an active region existed in the depress buffer prior to the depress and a drag motion has occurred, return non-nil .
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-drag-region-active ()
"Return non-nil if drag region is active.
If an active region existed in the depress buffer prior to the
depress and a drag motion has occurred, return non-nil ."
(save-excursion
(and (hmouse-goto-region-prev-point)
(hmouse-use-region-p)
(or (hmouse-drag-vertically) (hmouse-drag-horizontally) (hmouse-drag-diagonally))
(setq hkey-value (point)))))