emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 6911ef3: Correct merge blunder in last icomplete commit


From: João Távora
Subject: master 6911ef3: Correct merge blunder in last icomplete commit
Date: Sat, 2 Nov 2019 07:10:54 -0400 (EDT)

branch: master
commit 6911ef3da69333cb7adc1a7fb0a0fc001220a0c4
Author: João Távora <address@hidden>
Commit: João Távora <address@hidden>

    Correct merge blunder in last icomplete commit
    
    * lisp/icomplete.el (icomplete-exhibit): Use
    while-no-input-ignore-events.
---
 lisp/icomplete.el | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/lisp/icomplete.el b/lisp/icomplete.el
index 8357fd9..e1d6236 100644
--- a/lisp/icomplete.el
+++ b/lisp/icomplete.el
@@ -443,11 +443,7 @@ See `icomplete-mode' and `minibuffer-setup-hook'."
                   ;; Don't delay if the completions are known.
                   completion-all-sorted-completions
                   ;; Don't delay if alternatives number is small enough:
-             ;; Not sure why, but such requests seem to come
-               ;; every once in a while.  It's not fully
-               ;; deterministic but `C-x C-f M-DEL M-DEL ...'
-               ;; seems to trigger it fairly often!
-               (while-no-input-ignore-events '(selection-request))     (and 
(sequencep (icomplete--completion-table))
+                  (and (sequencep (icomplete--completion-table))
                        (< (length (icomplete--completion-table))
                           icomplete-delay-completions-threshold))
                   ;; Delay - give some grace time for next keystroke, before



reply via email to

[Prev in Thread] Current Thread [Next in Thread]