diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2021-11-28 00:13:32 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2021-11-28 00:13:32 +0100 |
| commit | b612af57548ba7da3b89af9cfff9b3a39da76703 (patch) | |
| tree | 91a99924be7e2045d40778dd2087fd0b50005227 | |
| parent | fd8828cff312e3294b158118ddaee89c0b30036b (diff) | |
Capf query should always be interruptible
| -rw-r--r-- | cape.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -865,7 +865,7 @@ The PREDICATE is passed the candidate symbol or string." (defun cape-noninterruptible-capf (capf) "Create a new CAPF which is non-interruptible silent by input." (lambda () - (pcase (let (throw-on-input) (funcall capf)) + (pcase (funcall capf) (`(,beg ,end ,table . ,plist) `(,beg ,end ,(cape--noninterruptible-table table) ,@plist))))) |
