From f2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Mon, 25 Apr 2022 11:44:03 -0700 Subject: [PATCH] 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 --- lisp/textmodes/word-wrap-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5