aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2022-04-25 11:44:03 -0700
committerGlenn Morris2022-04-25 11:44:03 -0700
commitf2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc (patch)
tree86b1af728ecf89a708f507a9b3d505ad73d1fe4e
parent96ec2ac7d0bdb6b1193217b35f7d74d79b7c2033 (diff)
downloademacs-f2a4dc66c20f1a787b9cfd7fabbd36dd045c1ecc.tar.gz
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
-rw-r--r--lisp/textmodes/word-wrap-mode.el2
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 @@
47 ?\N{ZERO WIDTH SPACE}) 47 ?\N{ZERO WIDTH SPACE})
48 "Characters that `word-wrap-whitespace-mode' should add to `word-wrap'." 48 "Characters that `word-wrap-whitespace-mode' should add to `word-wrap'."
49 :version "29.1" 49 :version "29.1"
50 :type '(repeat char) 50 :type '(repeat character)
51 :group 'display) 51 :group 'display)
52 52
53(defvar word-wrap-mode--previous-state) 53(defvar word-wrap-mode--previous-state)