Function: ede-linux-file-exists-name
ede-linux-file-exists-name is a byte-compiled function defined in
linux.el.gz.
Signature
(ede-linux-file-exists-name NAME ROOT SUBDIR)
Documentation
Return a file name if NAME exists under ROOT with SUBDIR in between.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/linux.el.gz
(defun ede-linux-file-exists-name (name root subdir)
"Return a file name if NAME exists under ROOT with SUBDIR in between."
(let ((F (expand-file-name name (expand-file-name subdir root))))
(when (file-exists-p F) F)))