diff options
author | Glenn Morris <rgm@gnu.org> | 2010-04-20 00:37:20 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-04-20 00:37:20 -0700 |
commit | d2c7b917066072d1780dfc8200bd749b3965f835 (patch) | |
tree | 282562ee9b579d18ff744d1bbc4f71ec971776b6 /lisp/minibuffer.el | |
parent | 958631c4cc36e766b98c05b05735cb83dce6fbb8 (diff) | |
download | emacs-d2c7b917066072d1780dfc8200bd749b3965f835.tar.gz |
* minibuffer.el (completion-at-point): Doc fix.
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 9c252134692..93a222053f6 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -1163,7 +1163,9 @@ Currently supported properties are: `:annotation-function' the value to use for `completion-annotate-function'.") (defun completion-at-point () - "Complete the thing at point according to local mode." + "Complete the thing at point according to local mode. +This runs the hook `completion-at-point-functions' until a member returns +non-nil." (interactive) (let ((res (run-hook-with-args-until-success 'completion-at-point-functions))) |