diff options
| -rw-r--r-- | evil-vars.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/evil-vars.el b/evil-vars.el index ebffa0a..dc29596 100644 --- a/evil-vars.el +++ b/evil-vars.el @@ -1019,7 +1019,8 @@ preserved." used in `evil-cjk-word-boundary-p'. See the documentation of `word-separating-categories'. Use `describe-categories' to see the list of categories." - :type '((character . character)) + :type '(alist :key-type (choice character (const nil)) + :value-type (choice character (const nil))) :group 'evil-cjk) (defcustom evil-cjk-word-combining-categories @@ -1038,7 +1039,8 @@ the list of categories." used in `evil-cjk-word-boundary-p'. See the documentation of `word-combining-categories'. Use `describe-categories' to see the list of categories." - :type '((character . character)) + :type '(alist :key-type (choice character (const nil)) + :value-type (choice character (const nil))) :group 'evil-cjk) (defcustom evil-ex-complete-emacs-commands 'in-turn |
