aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2002-02-26 16:05:35 +0000
committerRichard M. Stallman2002-02-26 16:05:35 +0000
commit8caa4ef5bd8ba4a0e3ebdeddedad1e182bdb27bb (patch)
tree9482f0d81badcd1c8173febd7ff565561138178c /lisp
parentcb5be6c9e6be7fbc7d36438077ac55888a61138d (diff)
downloademacs-8caa4ef5bd8ba4a0e3ebdeddedad1e182bdb27bb.tar.gz
emacs-8caa4ef5bd8ba4a0e3ebdeddedad1e182bdb27bb.zip
(icomplete-exhibit): Use minibuffer-prompt-end.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/icomplete.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el
index e35458f156b..786c0a55228 100644
--- a/lisp/icomplete.el
+++ b/lisp/icomplete.el
@@ -258,7 +258,7 @@ and `minibuffer-setup-hook'."
258 (make-local-variable 'icomplete-eoinput)) 258 (make-local-variable 'icomplete-eoinput))
259 (setq icomplete-eoinput (point)) 259 (setq icomplete-eoinput (point))
260 ; Insert the match-status information: 260 ; Insert the match-status information:
261 (if (and (> (point-max) 1) 261 (if (and (> (point-max) (minibuffer-prompt-end))
262 (or 262 (or
263 ;; Don't bother with delay after certain number of chars: 263 ;; Don't bother with delay after certain number of chars:
264 (> (point-max) icomplete-max-delay-chars) 264 (> (point-max) icomplete-max-delay-chars)