Variable: bibtex-string-file-path

bibtex-string-file-path is a customizable variable defined in bibtex.el.gz.

Value

nil

Documentation

List of directories to search for bibtex-string-files.

By default, initialized from the BIBINPUTS environment variable. For backward compatibility, considered obsolete, it may also be a single string with a colon separated list of directories.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-string-file-path
  (let ((bibinputs (getenv "BIBINPUTS")))
    (if bibinputs (split-string bibinputs ":+" t)))
  "List of directories to search for `bibtex-string-files'.
By default, initialized from the BIBINPUTS environment variable.
For backward compatibility, considered obsolete, it may also be
a single string with a colon separated list of directories."
  :group 'bibtex
  :version "31.1"
  :type '(choice (repeat directory)
                 (string :tag "String (obsolete)")
                 (const :tag "Not set" nil)))