From b612af57548ba7da3b89af9cfff9b3a39da76703 Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Sun, 28 Nov 2021 00:13:32 +0100 Subject: Capf query should always be interruptible --- cape.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cape.el b/cape.el index d0a1bcd..c07cd7e 100644 --- a/cape.el +++ b/cape.el @@ -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))))) -- cgit v1.0