mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-16 10:50:49 -08:00
Fix some custom types
* lisp/mpc.el (mpc-cover-image-re): * lisp/org/oc-csl.el (org-cite-csl-locales-dir) (org-cite-csl-styles-dir): * lisp/org/org-plot.el (org-plot/preset-plot-types): Fix :type.
This commit is contained in:
parent
5ee5a90213
commit
f1f57a541e
3 changed files with 4 additions and 4 deletions
|
|
@ -964,7 +964,7 @@ If PLAYLIST is t or nil or missing, use the main playlist."
|
||||||
|
|
||||||
(defcustom mpc-cover-image-re nil ; (rx (or ".jpg" ".jpeg" ".png") string-end)
|
(defcustom mpc-cover-image-re nil ; (rx (or ".jpg" ".jpeg" ".png") string-end)
|
||||||
"If non-nil, it is a regexp that should match a valid cover image."
|
"If non-nil, it is a regexp that should match a valid cover image."
|
||||||
:type '(regexp)
|
:type '(choice (const nil) regexp)
|
||||||
:version "28.1")
|
:version "28.1")
|
||||||
|
|
||||||
(defun mpc-secs-to-time (secs)
|
(defun mpc-secs-to-time (secs)
|
||||||
|
|
|
||||||
|
|
@ -123,7 +123,7 @@ If nil then only the fallback en-US locale will be available."
|
||||||
:group 'org-cite
|
:group 'org-cite
|
||||||
:package-version '(Org . "9.5")
|
:package-version '(Org . "9.5")
|
||||||
:type '(choice
|
:type '(choice
|
||||||
(dir :tag "Locales directory")
|
(directory :tag "Locales directory")
|
||||||
(const :tag "Use en-US locale only" nil))
|
(const :tag "Use en-US locale only" nil))
|
||||||
:safe t)
|
:safe t)
|
||||||
|
|
||||||
|
|
@ -134,7 +134,7 @@ directory. This variable is ignored when style file is absolute."
|
||||||
:group 'org-cite
|
:group 'org-cite
|
||||||
:package-version '(Org . "9.5")
|
:package-version '(Org . "9.5")
|
||||||
:type '(choice
|
:type '(choice
|
||||||
(dir :tag "Styles directory")
|
(directory :tag "Styles directory")
|
||||||
(const :tag "Use absolute file names" nil))
|
(const :tag "Use absolute file names" nil))
|
||||||
:safe t)
|
:safe t)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -392,7 +392,7 @@ be set.
|
||||||
Accepts string, nil, or lambda function which returns string
|
Accepts string, nil, or lambda function which returns string
|
||||||
or nil. Defaults to nil."
|
or nil. Defaults to nil."
|
||||||
:group 'org-plot
|
:group 'org-plot
|
||||||
:type '(alist :value-type (symbol group)))
|
:type 'alist)
|
||||||
|
|
||||||
(defvar org--plot/radar-template
|
(defvar org--plot/radar-template
|
||||||
"### spider plot/chart with gnuplot
|
"### spider plot/chart with gnuplot
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue