aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-06-22 19:39:37 +0300
committerEli Zaretskii2024-06-22 19:39:37 +0300
commit8520ec829d30195373aea2ae8bd7bdcf01f80b41 (patch)
tree7754e8c76b3a2c6b293223aff5fe9e2ce3388cda
parent99161fb7140ea67b606e8e8d3129ab6dbc0813a3 (diff)
downloademacs-8520ec829d30195373aea2ae8bd7bdcf01f80b41.tar.gz
emacs-8520ec829d30195373aea2ae8bd7bdcf01f80b41.zip
; * lisp/editorconfig.el (editorconfig-indentation-alist): Fix :type.
-rw-r--r--lisp/editorconfig.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/editorconfig.el b/lisp/editorconfig.el
index 475151d534d..931781007d9 100644
--- a/lisp/editorconfig.el
+++ b/lisp/editorconfig.el
@@ -268,7 +268,10 @@ This is a fallback used for those modes which don't set
268Each element should look like (MODE . SETTING) where SETTING 268Each element should look like (MODE . SETTING) where SETTING
269should obey the same rules as `editorconfig-indent-size-vars'." 269should obey the same rules as `editorconfig-indent-size-vars'."
270 :type '(alist :key-type symbol 270 :type '(alist :key-type symbol
271 :value-type (choice function (repeat symbol))) 271 :value-type (choice function
272 (repeat
273 (choice symbol
274 (cons symbol integer)))))
272 :risky t) 275 :risky t)
273 276
274(defcustom editorconfig-trim-whitespaces-mode nil 277(defcustom editorconfig-trim-whitespaces-mode nil