diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-03-19 14:22:15 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-03-19 14:22:15 +0100 |
commit | d120008778dc12f8b64322f0c4577ad389d3d009 (patch) | |
tree | cde657cbb5d44b6ad1b6b2858d742ab98b5f55d9 /lisp/minibuffer.el | |
parent | f454672ba3981c4541beb5018a02ffb08ed81849 (diff) | |
download | emacs-d120008778dc12f8b64322f0c4577ad389d3d009.tar.gz emacs-d120008778dc12f8b64322f0c4577ad389d3d009.tar.bz2 emacs-d120008778dc12f8b64322f0c4577ad389d3d009.zip |
* lisp/minibuffer.el (completion-in-region-functions): Fix docstring typos.
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 54d155cd510..1990f4f63d7 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -1099,12 +1099,12 @@ variables.") (exit-minibuffer)) (defvar completion-in-region-functions nil - "Wrapper hook around `complete-in-region'. + "Wrapper hook around `completion-in-region'. The functions on this special hook are called with 5 arguments: NEXT-FUN START END COLLECTION PREDICATE. NEXT-FUN is a function of four arguments (START END COLLECTION PREDICATE) that performs the default operation. The other four argument are like -the ones passed to `complete-in-region'. The functions on this hook +the ones passed to `completion-in-region'. The functions on this hook are expected to perform completion on START..END using COLLECTION and PREDICATE, either by calling NEXT-FUN or by doing it themselves.") |