Function: hypb:hkey-help-file
hypb:hkey-help-file is a byte-compiled function defined in hypb.el.
Signature
(hypb:hkey-help-file)
Documentation
Return the full path to the Hyperbole mouse key help file.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:hkey-help-file ()
"Return the full path to the Hyperbole mouse key help file."
(let* ((hypb-man (expand-file-name "man/" hyperb:dir))
(help-file (expand-file-name "hkey-help.txt" hypb-man)))
(if (or (file-exists-p help-file)
(file-exists-p
(setq help-file (expand-file-name
"hkey-help.txt" data-directory))))
help-file
(error "(hypb:hkey-help-file): Non-existent file: \"%s\""
help-file))))