[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master 0b722a74a56: * lisp/erc/erc-fill.el (erc-fill-spaced-commands
From: |
J.P. |
Subject: |
Re: master 0b722a74a56: * lisp/erc/erc-fill.el (erc-fill-spaced-commands): Fix typing errors |
Date: |
Thu, 18 May 2023 07:03:14 -0700 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Mattias <mattiase@acm.org> writes:
> branch: master
> commit 0b722a74a56d24710cceab33287d1e2040eeb19f
> Author: Mattias Engdegård <mattiase@acm.org>
> Commit: Mattias Engdegård <mattiase@acm.org>
>
> * 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.)
- Re: master 0b722a74a56: * lisp/erc/erc-fill.el (erc-fill-spaced-commands): Fix typing errors,
J.P. <=