]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/erc/erc-fill.el (erc-fill-spaced-commands): Fix typing errors
authorMattias Engdegård <mattiase@acm.org>
Thu, 18 May 2023 07:49:53 +0000 (09:49 +0200)
committerMattias Engdegård <mattiase@acm.org>
Thu, 18 May 2023 07:49:53 +0000 (09:49 +0200)
The type (set integer symbol) matches a list of at most one integer
and one symbol, not multiple distinct symbols.

lisp/erc/erc-fill.el

index 074e789f719256cdd148b4a8e963b62e2cbf367f..718e51a058cf51606f4fbdae8833e8c9c0f63140 100644 (file)
@@ -125,10 +125,10 @@ configured.  Its value should be larger than that of the variable
   :type '(choice (const nil) number))
 
 (defcustom erc-fill-spaced-commands '(PRIVMSG NOTICE)
-  "Types of mesages to add space between on graphical displays.
+  "Types of messages to add space between on graphical displays.
 Only considered when `erc-fill-line-spacing' is non-nil."
   :package-version '(ERC . "5.6") ; FIXME sync on release
-  :type '(set integer symbol))
+  :type '(repeat (choice integer symbol)))
 
 (defvar-local erc-fill--function nil
   "Internal copy of `erc-fill-function'.