summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorMauro Aranda <maurooaranda@gmail.com>2023-08-20 10:39:49 -0300
committerEli Zaretskii <eliz@gnu.org>2023-08-26 11:00:06 +0300
commit67ef2c14b0fd18841d5eaac8957155434a7e53da (patch)
treea52d8f64a2a190562379c6a8c33729966d04602b /lisp/custom.el
parent568a943006551dc8083bd39fd148583f7eadfe79 (diff)
downloademacs-67ef2c14b0fd18841d5eaac8957155434a7e53da.tar.gz
Improve type of custom-theme-directory (Bug#65401)
* lisp/custom.el (custom-theme-directory): Make it of type directory.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index 083349e3591..5c134ff7f13 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -1208,7 +1208,7 @@ The command `customize-create-theme' writes theme files into this
directory. By default, Emacs searches for custom themes in this
directory first---see `custom-theme-load-path'."
:initialize #'custom-initialize-delay
- :type 'string
+ :type 'directory
:group 'customize
:version "22.1")