From: Glenn Morris Date: Mon, 25 Apr 2022 18:44:03 +0000 (-0700) Subject: Fix type of word-wrap-whitespace-characters X-Git-Tag: emacs-29.0.90~1931^2~310 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc;p=emacs.git 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 --- 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)