diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-02-26 16:05:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-02-26 16:05:35 +0000 |
commit | 8caa4ef5bd8ba4a0e3ebdeddedad1e182bdb27bb (patch) | |
tree | 9482f0d81badcd1c8173febd7ff565561138178c | |
parent | cb5be6c9e6be7fbc7d36438077ac55888a61138d (diff) | |
download | emacs-8caa4ef5bd8ba4a0e3ebdeddedad1e182bdb27bb.tar.gz |
(icomplete-exhibit): Use minibuffer-prompt-end.
-rw-r--r-- | lisp/icomplete.el | 2 |
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'." (make-local-variable 'icomplete-eoinput)) (setq icomplete-eoinput (point)) ; Insert the match-status information: - (if (and (> (point-max) 1) + (if (and (> (point-max) (minibuffer-prompt-end)) (or ;; Don't bother with delay after certain number of chars: (> (point-max) icomplete-max-delay-chars) |