; * lisp/editorconfig.el (editorconfig-indentation-alist): Fix :type.

This commit is contained in:
Eli Zaretskii 2024-06-22 19:39:37 +03:00
parent 99161fb714
commit 8520ec829d

View file

@ -268,7 +268,10 @@ This is a fallback used for those modes which don't set
Each element should look like (MODE . SETTING) where SETTING
should obey the same rules as `editorconfig-indent-size-vars'."
:type '(alist :key-type symbol
:value-type (choice function (repeat symbol)))
:value-type (choice function
(repeat
(choice symbol
(cons symbol integer)))))
:risky t)
(defcustom editorconfig-trim-whitespaces-mode nil