diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2022-04-02 01:39:55 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2022-04-02 01:39:55 +0200 |
| commit | fbf3f275ad789cdfacc09bf8a6841ec49d0120fa (patch) | |
| tree | 7207be5f39b19b7cb547e83b9dd1ce8cfdf22d86 /cape.el | |
| parent | ee826d70fdd2e8324a4af1a427ea9ce54f5e32e6 (diff) | |
cape-capf-noninterruptible: Add missing throw-on-input
Diffstat (limited to 'cape.el')
| -rw-r--r-- | cape.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1062,7 +1062,7 @@ If DONT-FOLD is non-nil return a case sensitive table instead." ;;;###autoload (defun cape-wrap-noninterruptible (capf) "Call CAPF and return a non-interruptible completion table." - (pcase (funcall capf) + (pcase (let (throw-on-input) (funcall capf)) (`(,beg ,end ,table . ,plist) `(,beg ,end ,(cape--noninterruptible-table table) ,@plist)))) |
