Function: hypb:select-window-frame
hypb:select-window-frame is a byte-compiled function defined in
hypb.el.
Signature
(hypb:select-window-frame WINDOW)
Documentation
Select WINDOW and its frame (set input focus there).
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:select-window-frame (window)
"Select WINDOW and its frame (set input focus there)."
(if (window-live-p window)
(progn (select-window window)
(select-frame-set-input-focus (window-frame window)))
(error "(hypb:select-window-frame): Argument must be a live window, not '%s'" window)))