Call `completion-list-mode' to avoid slowness of the first completion
authortomo <tomo>
Wed, 27 Sep 2000 05:27:40 +0000 (05:27 +0000)
committertomo <tomo>
Wed, 27 Sep 2000 05:27:40 +0000 (05:27 +0000)
when UTF-2000 is running.

lisp/list-mode.el

index 25d2418..60c0ee3 100644 (file)
@@ -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)))