Function: man--find-header-files

man--find-header-files is a byte-compiled function defined in man.el.gz.

Signature

(man--find-header-files FILE)

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
;; Header file support
(defun man--find-header-files (file)
  (delq nil
        (mapcar (lambda (path)
                  (let ((complete-path (expand-file-name file path)))
                    (and (file-readable-p complete-path)
                         complete-path)))
                (Man-header-file-path))))