From: tomo Date: Wed, 27 Sep 2000 05:27:40 +0000 (+0000) Subject: Call `completion-list-mode' to avoid slowness of the first completion X-Git-Tag: r21-2-35-utf-2000-0_17-1~9 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=c17036ee7f5e9405bcbf730befb635de7b8f9114;p=chise%2Fxemacs-chise.git.1 Call `completion-list-mode' to avoid slowness of the first completion when UTF-2000 is running. --- 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)))