[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master de063da: Correct some more custom type specs
From: |
Robert Pluim |
Subject: |
[Emacs-diffs] master de063da: Correct some more custom type specs |
Date: |
Fri, 11 Oct 2019 08:17:42 -0400 (EDT) |
branch: master
commit de063da61beb076190104fa21ec69a3479d59647
Author: Robert Pluim <address@hidden>
Commit: Robert Pluim <address@hidden>
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.
---
lisp/gnus/nnir.el | 2 +-
lisp/image-dired.el | 4 +++-
lisp/progmodes/js.el | 3 ++-
lisp/textmodes/bibtex.el | 14 ++++++++++----
lisp/winner.el | 3 ++-
5 files changed, 18 insertions(+), 8 deletions(-)
diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el
index 1041373..7cb2d16 100644
--- a/lisp/gnus/nnir.el
+++ b/lisp/gnus/nnir.el
@@ -535,7 +535,7 @@ like so:
(lambda (g) (replace-regexp-in-string \"\\\\.\" \"/\" g)))"
:version "27.1"
:type '(choice function
- nil))
+ (const :tag "No" nil)))
;;; Developer Extension Variable:
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index c1c767b..85bc924 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -538,7 +538,9 @@ with the comment."
"Name of external viewer.
Including parameters. Used when displaying original image from
`image-dired-thumbnail-mode'."
- :type 'string
+ :version "27.1"
+ :type '(choice string
+ (const :tag "Not Set" nil))
:group 'image-dired)
(defcustom image-dired-main-image-directory "~/pics/"
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el
index 3050e8f..8d457a2 100644
--- a/lisp/progmodes/js.el
+++ b/lisp/progmodes/js.el
@@ -650,7 +650,8 @@ indentation looks like this (different):
</element>
)"
:version "27.1"
- :type 'integer
+ :type '(choice integer
+ (const :tag "Not Set" nil))
:safe (lambda (x) (or (null x) (integerp x)))
:group 'js)
;; This is how indentation behaved out-of-the-box until Emacs 27. JSX
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index 7e99032..c29e963 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.
diff --git a/lisp/winner.el b/lisp/winner.el
index dc8bde5..a97bfbd 100644
--- a/lisp/winner.el
+++ b/lisp/winner.el
@@ -61,7 +61,8 @@ You may want to include buffer names such as *Help*,
*Apropos*,
(defcustom winner-boring-buffers-regexp nil
"`winner-undo' will not restore windows with buffers matching this regexp."
- :type 'string
+ :type '(choice (regexp :tag "Regexp")
+ (const :tag "Not Set" nil))
:version "27.1")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master de063da: Correct some more custom type specs,
Robert Pluim <=