diff options
| author | Robert Pluim | 2019-10-09 15:28:47 +0200 |
|---|---|---|
| committer | Robert Pluim | 2019-10-11 14:17:08 +0200 |
| commit | de063da61beb076190104fa21ec69a3479d59647 (patch) | |
| tree | cddc4a537327dd1135d3c1a563928d2d6610ac3b /lisp/textmodes | |
| parent | b259bf63c77a01f3035813b3485fbd9ad7ae02a0 (diff) | |
| download | emacs-de063da61beb076190104fa21ec69a3479d59647.tar.gz emacs-de063da61beb076190104fa21ec69a3479d59647.zip | |
Correct some more custom type specs
* lisp/winner.el (winner-boring-buffers-regexp):
* lisp/progmodes/js.el (js-jsx-indent-level):
* lisp/image-dired.el (image-dired-external-viewer):
* lisp/gnus/nnir.el (nnir-notmuch-filter-group-names-function):
Correct custom type specification.
* lisp/textmodes/bibtex.el (bibtex-string-file-path):
(bibtex-file-path): Correct custom type specification and document
source of initial value.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/bibtex.el | 14 |
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'. |
| 937 | Initialized 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'. |
| 956 | Initialized 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. |