From: Juanma Barranquero Date: Fri, 19 Mar 2010 13:22:15 +0000 (+0100) Subject: * lisp/minibuffer.el (completion-in-region-functions): Fix docstring typos. X-Git-Tag: emacs-pretest-23.1.95~62 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d120008778dc12f8b64322f0c4577ad389d3d009;p=emacs.git * lisp/minibuffer.el (completion-in-region-functions): Fix docstring typos. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 45cfb194df2..23cf3f7a623 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-03-19 Juanma Barranquero + + * minibuffer.el (completion-in-region-functions): Fix docstring typos. + 2010-03-18 Glenn Morris * mail/rmail.el (rmail-highlight-face): Restore option deleted 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.")