branch: master commit 82d41b7931647823982c9d258007a4db15e87c91 Author: Dmitry Gutov <dgu...@yandex.ru> Commit: Dmitry Gutov <dgu...@yandex.ru>
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)