diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-08-14 23:44:29 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-08-14 23:44:29 +0000 |
commit | 3c59150df6b5b930e6b3acfce66a0a2c9bcadaaf (patch) | |
tree | f5d2d4cda9eaaaeebf992d6052db26e64a99658f /lisp/simple.el | |
parent | d478606111f9779a8745c3982e65acfb2cc50315 (diff) | |
download | emacs-3c59150df6b5b930e6b3acfce66a0a2c9bcadaaf.tar.gz |
(completion-base-size): Doc fix.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 14 |
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' and `mouse-choose-completion'.") (defvar completion-base-size nil - "Number of chars at beginning of minibuffer not involved in completion. -This is a local variable in the completion list buffer -but it talks about the buffer in `completion-reference-buffer'. -If this is nil, it means to compare text to determine which part -of the tail end of the buffer's text is involved in completion.") + "Number of chars before point not involved in completion. +This is a local variable in the completion list buffer. +It refers to the chars in the minibuffer if completing in the +minibuffer, or in `completion-reference-buffer' otherwise. +Only characters in the field at point are included. + +If nil, Emacs determines which part of the tail end of the +buffer's text is involved in completion by comparing the text +directly.") (defun delete-completion-window () "Delete the completion list window. |