Function: id-info
id-info is a byte-compiled function defined in hversion.el.
Signature
(id-info STRING)
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hversion.el
(defun id-info (string)
(if (stringp string)
(progn (let ((wind (get-buffer-window "*info*")))
(cond (wind (select-window wind))
((br-in-browser) (br-to-view-window))
(t (hpath:display-buffer (other-buffer)))))
;; Force execution of Info-mode-hook which adds the
;; Hyperbole man directory to Info-directory-list.
(info)
(condition-case ()
(Info-goto-node string)
;; If not found as a node, try as an index item.
(error (id-info-item string))))
(error "(id-info): Invalid Info argument, `%s'" string)))