Function: Man-view-header-file
Man-view-header-file is a byte-compiled function defined in man.el.gz.
Signature
(Man-view-header-file FILE)
Documentation
View a header file specified by FILE from Man-header-file-path(var)/Man-header-file-path(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-view-header-file (file)
"View a header file specified by FILE from `Man-header-file-path'."
(when-let* ((match (man--find-header-files file)))
(view-file (car match))
(car match)))