aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/simple.el14
1 files changed, 9 insertions, 5 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 084e2729324..1cf39021321 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5541,11 +5541,15 @@ This also applies to other functions such as `choose-completion'
5541and `mouse-choose-completion'.") 5541and `mouse-choose-completion'.")
5542 5542
5543(defvar completion-base-size nil 5543(defvar completion-base-size nil
5544 "Number of chars at beginning of minibuffer not involved in completion. 5544 "Number of chars before point not involved in completion.
5545This is a local variable in the completion list buffer 5545This is a local variable in the completion list buffer.
5546but it talks about the buffer in `completion-reference-buffer'. 5546It refers to the chars in the minibuffer if completing in the
5547If this is nil, it means to compare text to determine which part 5547minibuffer, or in `completion-reference-buffer' otherwise.
5548of the tail end of the buffer's text is involved in completion.") 5548Only characters in the field at point are included.
5549
5550If nil, Emacs determines which part of the tail end of the
5551buffer's text is involved in completion by comparing the text
5552directly.")
5549 5553
5550(defun delete-completion-window () 5554(defun delete-completion-window ()
5551 "Delete the completion list window. 5555 "Delete the completion list window.