summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorRobert Pluim <rpluim@gmail.com>2019-10-09 15:28:47 +0200
committerRobert Pluim <rpluim@gmail.com>2019-10-11 14:17:08 +0200
commitde063da61beb076190104fa21ec69a3479d59647 (patch)
treecddc4a537327dd1135d3c1a563928d2d6610ac3b /lisp/textmodes
parentb259bf63c77a01f3035813b3485fbd9ad7ae02a0 (diff)
downloademacs-de063da61beb076190104fa21ec69a3479d59647.tar.gz
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.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'."
:type '(repeat file))
(defcustom bibtex-string-file-path (getenv "BIBINPUTS")
- "Colon-separated list of paths to search for `bibtex-string-files'."
+ "Colon-separated list of paths to search for `bibtex-string-files'.
+Initialized from the BIBINPUTS environment variable."
:group 'bibtex
- :type 'string)
+ :version "27.1"
+ :type '(choice string
+ (const :tag "Not Set" nil)))
(defcustom bibtex-files nil
"List of BibTeX files that are searched for entry keys.
@@ -949,9 +952,12 @@ See also `bibtex-search-entry-globally'."
directory file)))
(defcustom bibtex-file-path (getenv "BIBINPUTS")
- "Colon separated list of paths to search for `bibtex-files'."
+ "Colon separated list of paths to search for `bibtex-files'.
+Initialized from the BIBINPUTS environment variable."
:group 'bibtex
- :type 'string)
+ :version "27.1"
+ :type '(choice string
+ (const :tag "Not Set" nil)))
(defcustom bibtex-search-entry-globally nil
"If non-nil, interactive calls of `bibtex-search-entry' search globally.