emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/writegood-mode b0eba77c4d 30/47: Fix customization definit


From: ELPA Syncer
Subject: [nongnu] elpa/writegood-mode b0eba77c4d 30/47: Fix customization definition of word lists
Date: Mon, 12 Dec 2022 21:01:42 -0500 (EST)

branch: elpa/writegood-mode
commit b0eba77c4df30d29fb7a98e274bc7fde5e5431fe
Author: Benjamin Beckwith <bnbeckwith@gmail.com>
Commit: Benjamin Beckwith <bnbeckwith@gmail.com>

    Fix customization definition of word lists
    
    This makes the customization interface work with the word lists for
    weasel words and passive voice irregular verbs.
---
 writegood-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/writegood-mode.el b/writegood-mode.el
index 3de1b626bf..70df2cf1db 100755
--- a/writegood-mode.el
+++ b/writegood-mode.el
@@ -94,7 +94,7 @@
     "not rocket science" "outside the box")
   "The weasel words to use"
   :group 'writegood
-  :type 'list)
+  :type '(repeat string))
   
 (defvar writegood-weasels-font-lock-keywords-regexp
   (concat "\\b" (regexp-opt writegood-weasel-words) "\\b")
@@ -137,7 +137,7 @@
     "withstood" "wrung" "written")
   "List of passive voice irregular verbs"
   :group 'writegood
-  :type 'list)
+  :type '(repeat string))
 
 (defcustom writegood-sentence-punctuation
   '(?. ?? ?!)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]