Variable: bibtex-files
bibtex-files is a customizable variable defined in bibtex.el.gz.
Value
nil
Documentation
List of BibTeX files that are searched for entry keys.
List elements can be absolute file names or file names relative to the
directories specified in bibtex-file-path. If an element is a directory,
check all BibTeX files in this directory. If an element is the symbol
bibtex-file-path, check all BibTeX files in bibtex-file-path.
See also bibtex-search-entry-globally.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-files nil
"List of BibTeX files that are searched for entry keys.
List elements can be absolute file names or file names relative to the
directories specified in `bibtex-file-path'. If an element is a directory,
check all BibTeX files in this directory. If an element is the symbol
`bibtex-file-path', check all BibTeX files in `bibtex-file-path'.
See also `bibtex-search-entry-globally'."
:group 'bibtex
:type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path)
directory file)))