Function: hpath:display-where-function
hpath:display-where-function is a byte-compiled function defined in
hpath.el.
Signature
(hpath:display-where-function DISPLAY-WHERE DISPLAY-WHERE-ALIST)
Documentation
Return the function to display a Hyperbole buffer or path.
Uses the symbol DISPLAY-WHERE or if null, hpath:display-where. DISPLAY-WHERE-ALIST is a lookup table mapping from DISPLAY-WHERE values to associated functions.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defun hpath:display-where-function (display-where display-where-alist)
"Return the function to display a Hyperbole buffer or path.
Uses the symbol DISPLAY-WHERE or if null, `hpath:display-where'.
DISPLAY-WHERE-ALIST is a lookup table mapping from DISPLAY-WHERE
values to associated functions."
(unless display-where
(setq display-where hpath:display-where))
(cadr (or (assq display-where display-where-alist)
(assq 'other-window display-where-alist))))