From c17036ee7f5e9405bcbf730befb635de7b8f9114 Mon Sep 17 00:00:00 2001 From: tomo Date: Wed, 27 Sep 2000 05:27:40 +0000 Subject: [PATCH] Call `completion-list-mode' to avoid slowness of the first completion when UTF-2000 is running. --- lisp/list-mode.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/list-mode.el b/lisp/list-mode.el index 25d2418..60c0ee3 100644 --- a/lisp/list-mode.el +++ b/lisp/list-mode.el @@ -658,3 +658,8 @@ Go to the window from which completion was requested." (point-max))))) ;;; list-mode.el ends here + +;; [tomo] ad-hoc method to avoid slowness of the first completion +(if (featurep 'utf-2000) + (with-temp-buffer + (completion-list-mode))) -- 1.7.10.4