Re: master 0b722a74a56: * lisp/erc/erc-fill.el (erc-fill-spaced-commands): Fix typing errors
"J.P." <[email protected]>
| Newsgroups | gmane.emacs.erc.general |
|---|---|
| Message-ID | <[email protected]> |
Mattias <[email protected]> writes: > branch: master > commit 0b722a74a56d24710cceab33287d1e2040eeb19f > Author: Mattias Engdegård <[email protected]> > Commit: Mattias Engdegård <[email protected]> > > * 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'. How dare you shine a spotlight on my utter incompetence! (Much appreciated, cheers.)