Clean up `defcustom' :type specifications

This commit is contained in:
Gerard Vermeulen 2023-06-03 21:17:28 +02:00
parent 1a92b1b0cc
commit e360258b72

View File

@ -86,7 +86,7 @@ This option overrules an `org-html-embed-svg' non-nil value.
It can also be set with the HTML_EXCLUDE_EMBED_SVGS keyword."
:group 'org-export-html
:version "30.0"
:type '(repeat (string :path "Path"))
:type '(repeat string)
:safe (lambda (x) (and (listp x) (cl-every #'stringp x))))
(defcustom org-html-select-embed-svgs nil
@ -97,7 +97,7 @@ This option overrules an `org-html-embed-svg' nil value.
It can also be set with the HTML_SELECT_EMBED_SVGS keyword."
:group 'org-export-html
:version "30.0"
:type '(repeat (string :path "Path"))
:type '(repeat string)
:safe (lambda (x) (and (listp x) (cl-every #'stringp x))))