[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [elpa] externals/vertico 5bbddb0 03/48: add while-no-input-ignore-ev
From: |
Stefan Monnier |
Subject: |
Re: [elpa] externals/vertico 5bbddb0 03/48: add while-no-input-ignore-events |
Date: |
Mon, 05 Apr 2021 11:08:59 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) |
> add while-no-input-ignore-events
> Thanks, @clemera
[...]
> "Preprocess candidates with INPUT string and METADATA."
> - (pcase (while-no-input (minicomp--candidates input metadata))
> + (pcase (let ((while-no-input-ignore-events '(selection-request)))
> + (while-no-input (minicomp--candidates input metadata)))
I don't understand why you do that.
Was the intention to add `selection-request` to `while-no-input-ignore-events`,
or to remove everything else from it (which is what it does)?
If so, why?
Stefan
- Re: [elpa] externals/vertico 5bbddb0 03/48: add while-no-input-ignore-events,
Stefan Monnier <=