Function: hmouse-set-point-at

hmouse-set-point-at is a byte-compiled function defined in hmouse-drv.el.

Signature

(hmouse-set-point-at SET-POINT-ARG-LIST)

Documentation

Set point to cursor position using SET-POINT-ARG-LIST and return t.

If hmouse-set-point-command is not bound to a function, this does nothing and returns nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
(defun hmouse-set-point-at (set-point-arg-list)
  "Set point to cursor position using SET-POINT-ARG-LIST and return t.
If `hmouse-set-point-command' is not bound to a function, this does nothing
and returns nil."
  (when (fboundp hmouse-set-point-command)
    (or (if set-point-arg-list
	    (funcall hmouse-set-point-command set-point-arg-list)
	  (funcall hmouse-set-point-command))
	t)))