Function: hmouse-set-buffer-and-point

hmouse-set-buffer-and-point is a byte-compiled function defined in hui-window.el.

Signature

(hmouse-set-buffer-and-point BUFFER POINT)

Documentation

Set BUFFER and POINT.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-set-buffer-and-point (buffer point)
  "Set BUFFER and POINT."
  (when buffer
    (set-buffer buffer)
    (when point (goto-char point))))