From: Mattias EngdegÄrd Date: Thu, 18 May 2023 07:49:53 +0000 (+0200) Subject: * lisp/erc/erc-fill.el (erc-fill-spaced-commands): Fix typing errors X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b722a74a56d24710cceab33287d1e2040eeb19f;p=emacs.git * lisp/erc/erc-fill.el (erc-fill-spaced-commands): Fix typing errors The type (set integer symbol) matches a list of at most one integer and one symbol, not multiple distinct symbols. --- diff --git a/lisp/erc/erc-fill.el b/lisp/erc/erc-fill.el index 074e789f719..718e51a058c 100644 --- a/lisp/erc/erc-fill.el +++ b/lisp/erc/erc-fill.el @@ -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'.