diff options
author | Glenn Morris <rgm@gnu.org> | 2022-04-25 11:44:03 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2022-04-25 11:44:03 -0700 |
commit | f2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc (patch) | |
tree | 86b1af728ecf89a708f507a9b3d505ad73d1fe4e /lisp/textmodes/word-wrap-mode.el | |
parent | 96ec2ac7d0bdb6b1193217b35f7d74d79b7c2033 (diff) | |
download | emacs-f2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc.tar.gz emacs-f2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc.tar.bz2 emacs-f2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc.zip |
Fix type of word-wrap-whitespace-characters
* lisp/textmodes/word-wrap-mode.el (word-wrap-whitespace-characters):
Fix type.
; Ref https://hydra.nixos.org/build/174560242
Diffstat (limited to 'lisp/textmodes/word-wrap-mode.el')
-rw-r--r-- | lisp/textmodes/word-wrap-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/word-wrap-mode.el b/lisp/textmodes/word-wrap-mode.el index 78823c4f133..1459a3395ca 100644 --- a/lisp/textmodes/word-wrap-mode.el +++ b/lisp/textmodes/word-wrap-mode.el @@ -47,7 +47,7 @@ ?\N{ZERO WIDTH SPACE}) "Characters that `word-wrap-whitespace-mode' should add to `word-wrap'." :version "29.1" - :type '(repeat char) + :type '(repeat character) :group 'display) (defvar word-wrap-mode--previous-state) |