From 0b722a74a56d24710cceab33287d1e2040eeb19f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Thu, 18 May 2023 09:49:53 +0200 Subject: [PATCH] * 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. --- lisp/erc/erc-fill.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'. -- 2.39.5