Function: hmouse-goto-region-prev-point
hmouse-goto-region-prev-point is a byte-compiled function defined in
hui-window.el.
Signature
(hmouse-goto-region-prev-point)
Documentation
Temporarily set point to where it was prior to the last Smart Key depress.
Return t if such a point is saved, else nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-goto-region-prev-point ()
"Temporarily set point to where it was prior to the last Smart Key depress.
Return t if such a point is saved, else nil."
(let* ((prev-point (if assist-flag assist-key-depress-prev-point action-key-depress-prev-point))
(buf (and prev-point (marker-buffer prev-point)))
(loc (and prev-point (marker-position prev-point))))
(when (and buf loc)
(hmouse-set-buffer-and-point buf loc)
t)))