emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] master 82d41b7 70/78: Avoid an extra redisplay call


From: Dmitry Gutov
Subject: [elpa] master 82d41b7 70/78: Avoid an extra redisplay call
Date: Sun, 18 Feb 2018 07:40:28 -0500 (EST)

branch: master
commit 82d41b7931647823982c9d258007a4db15e87c91
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    Avoid an extra redisplay call
    
    Makes no practical difference, though.
---
 company.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/company.el b/company.el
index 2737a29..b057e01 100644
--- a/company.el
+++ b/company.el
@@ -1232,7 +1232,7 @@ can retrieve meta-data for them."
              (push 'company-dummy-event unread-command-events))
            (setq res candidates)))
         (while (and (eq res 'none)
-                    (sit-for 0.5)))
+                    (sit-for 0.5 t)))
         (and (consp res) res)))))
 
 (defun company--preprocess-candidates (candidates)



reply via email to

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