projects
/
chise
/
xemacs-chise.git.1
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41c9cbf
)
Call `completion-list-mode' to avoid slowness of the first completion
author
tomo
<tomo>
Wed, 27 Sep 2000 05:27:40 +0000
(
05:27
+0000)
committer
tomo
<tomo>
Wed, 27 Sep 2000 05:27:40 +0000
(
05:27
+0000)
when UTF-2000 is running.
lisp/list-mode.el
patch
|
blob
|
history
diff --git
a/lisp/list-mode.el
b/lisp/list-mode.el
index
25d2418
..
60c0ee3
100644
(file)
--- 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)))