; * lisp/editorconfig.el (editorconfig-indentation-alist): Fix :type.
This commit is contained in:
parent
99161fb714
commit
8520ec829d
1 changed files with 4 additions and 1 deletions
|
@ -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
|
Each element should look like (MODE . SETTING) where SETTING
|
||||||
should obey the same rules as `editorconfig-indent-size-vars'."
|
should obey the same rules as `editorconfig-indent-size-vars'."
|
||||||
:type '(alist :key-type symbol
|
:type '(alist :key-type symbol
|
||||||
:value-type (choice function (repeat symbol)))
|
:value-type (choice function
|
||||||
|
(repeat
|
||||||
|
(choice symbol
|
||||||
|
(cons symbol integer)))))
|
||||||
:risky t)
|
:risky t)
|
||||||
|
|
||||||
(defcustom editorconfig-trim-whitespaces-mode nil
|
(defcustom editorconfig-trim-whitespaces-mode nil
|
||||||
|
|
Loading…
Add table
Reference in a new issue