aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/bibtex.el14
1 files changed, 10 insertions, 4 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index 7e99032084e..c29e9631801 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -933,9 +933,12 @@ to the directories specified in `bibtex-string-file-path'."
933 :type '(repeat file)) 933 :type '(repeat file))
934 934
935(defcustom bibtex-string-file-path (getenv "BIBINPUTS") 935(defcustom bibtex-string-file-path (getenv "BIBINPUTS")
936 "Colon-separated list of paths to search for `bibtex-string-files'." 936 "Colon-separated list of paths to search for `bibtex-string-files'.
937Initialized from the BIBINPUTS environment variable."
937 :group 'bibtex 938 :group 'bibtex
938 :type 'string) 939 :version "27.1"
940 :type '(choice string
941 (const :tag "Not Set" nil)))
939 942
940(defcustom bibtex-files nil 943(defcustom bibtex-files nil
941 "List of BibTeX files that are searched for entry keys. 944 "List of BibTeX files that are searched for entry keys.
@@ -949,9 +952,12 @@ See also `bibtex-search-entry-globally'."
949 directory file))) 952 directory file)))
950 953
951(defcustom bibtex-file-path (getenv "BIBINPUTS") 954(defcustom bibtex-file-path (getenv "BIBINPUTS")
952 "Colon separated list of paths to search for `bibtex-files'." 955 "Colon separated list of paths to search for `bibtex-files'.
956Initialized from the BIBINPUTS environment variable."
953 :group 'bibtex 957 :group 'bibtex
954 :type 'string) 958 :version "27.1"
959 :type '(choice string
960 (const :tag "Not Set" nil)))
955 961
956(defcustom bibtex-search-entry-globally nil 962(defcustom bibtex-search-entry-globally nil
957 "If non-nil, interactive calls of `bibtex-search-entry' search globally. 963 "If non-nil, interactive calls of `bibtex-search-entry' search globally.