]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix type of word-wrap-whitespace-characters
authorGlenn Morris <rgm@gnu.org>
Mon, 25 Apr 2022 18:44:03 +0000 (11:44 -0700)
committerGlenn Morris <rgm@gnu.org>
Mon, 25 Apr 2022 18:44:03 +0000 (11:44 -0700)
* 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

index 78823c4f1330ada65712879136893b0800bec921..1459a3395ca94a3710fb9020cba9bfd56e014665 100644 (file)
@@ -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)