Function: hmouse-pulse-region

hmouse-pulse-region is a byte-compiled function defined in hui-window.el.

Signature

(hmouse-pulse-region START END)

Documentation

When hmouse-pulse-flag is non-nil, pulse the region between START and END.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-pulse-region (start end)
  "When `hmouse-pulse-flag' is non-nil, pulse the region between START and END."
  (when (and hmouse-pulse-flag (featurep 'pulse) pulse-flag (pulse-available-p))
    (let ((pulse-iterations hmouse-pulse-iterations))
      (pulse-momentary-highlight-region start end 'next-error))))