Variable: find-function-C-source-directory
find-function-C-source-directory is a variable defined in
find-func.el.gz.
Value
"/workspace/src/src"
Documentation
Directory where the C source files of Emacs can be found.
If nil, do not try to find the source code of functions and variables defined in C.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
(defvar find-function-C-source-directory
(let ((dir (expand-file-name "src" source-directory)))
(if (file-accessible-directory-p dir) dir))
"Directory where the C source files of Emacs can be found.
If nil, do not try to find the source code of functions and variables
defined in C.")