diff options
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/bibtex.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 87a32ad47a9..31656918fad 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -916,8 +916,10 @@ to the directories specified in `bibtex-string-file-path'." | |||
| 916 | :group 'bibtex | 916 | :group 'bibtex |
| 917 | :type '(repeat file)) | 917 | :type '(repeat file)) |
| 918 | 918 | ||
| 919 | (defvar bibtex-string-file-path (getenv "BIBINPUTS") | 919 | (defcustom bibtex-string-file-path (getenv "BIBINPUTS") |
| 920 | "Colon separated list of paths to search for `bibtex-string-files'.") | 920 | "Colon-separated list of paths to search for `bibtex-string-files'." |
| 921 | :group 'bibtex | ||
| 922 | :type 'string) | ||
| 921 | 923 | ||
| 922 | (defcustom bibtex-files nil | 924 | (defcustom bibtex-files nil |
| 923 | "List of BibTeX files that are searched for entry keys. | 925 | "List of BibTeX files that are searched for entry keys. |
| @@ -930,8 +932,10 @@ See also `bibtex-search-entry-globally'." | |||
| 930 | :type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path) | 932 | :type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path) |
| 931 | directory file))) | 933 | directory file))) |
| 932 | 934 | ||
| 933 | (defvar bibtex-file-path (getenv "BIBINPUTS") | 935 | (defcustom bibtex-file-path (getenv "BIBINPUTS") |
| 934 | "Colon separated list of paths to search for `bibtex-files'.") | 936 | "Colon separated list of paths to search for `bibtex-files'." |
| 937 | :group 'bibtex | ||
| 938 | :type 'string) | ||
| 935 | 939 | ||
| 936 | (defcustom bibtex-search-entry-globally nil | 940 | (defcustom bibtex-search-entry-globally nil |
| 937 | "If non-nil, interactive calls of `bibtex-search-entry' search globally. | 941 | "If non-nil, interactive calls of `bibtex-search-entry' search globally. |