]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/minibuffer.el (completion-in-region-functions): Fix docstring typos.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 19 Mar 2010 13:22:15 +0000 (14:22 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 19 Mar 2010 13:22:15 +0000 (14:22 +0100)
lisp/ChangeLog
lisp/minibuffer.el

index 45cfb194df2d9725b3cb26d250a3628d05b5c9de..23cf3f7a6238dd93c0a5ecc33102a5fa0949a9d3 100644 (file)
@@ -1,3 +1,7 @@
+2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
+
+       * minibuffer.el (completion-in-region-functions): Fix docstring typos.
+
 2010-03-18  Glenn Morris  <rgm@gnu.org>
 
        * mail/rmail.el (rmail-highlight-face): Restore option deleted
index 54d155cd510b22fab0c13ff47210177ad2abb053..1990f4f63d7c00d01ebb9f5a838e1a718e0c9bb6 100644 (file)
@@ -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.")