Function: hui-menu-to-window

hui-menu-to-window is a byte-compiled function defined in hui-jmenu.el.

Signature

(hui-menu-to-window WINDOW)

Documentation

Go to WINDOW.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-jmenu.el
(defun hui-menu-to-window (window)
  "Go to WINDOW."
  (if (window-live-p window)
      (let ((frame (window-frame window)))
	(make-frame-visible frame)
	(raise-frame (select-frame frame))
	(select-window window))
    (error "(Hyperbole): `%s' window no longer exists" (buffer-name (window-buffer window)))))