]> git.eshelyaron.com Git - emacs.git/commitdiff
* simple.el (choose-completion-string): Fix docstring (bug#14163).
authorBastien Guerry <bzg@gnu.org>
Tue, 9 Apr 2013 09:36:25 +0000 (11:36 +0200)
committerBastien Guerry <bzg@gnu.org>
Tue, 9 Apr 2013 09:36:25 +0000 (11:36 +0200)
lisp/ChangeLog
lisp/simple.el

index 95aadd40fd6910a4df9bb7f6290793e0f875ca0d..8eafcfacd98f77d858639ab02ac511224b78b4ed 100644 (file)
@@ -1,3 +1,7 @@
+2013-04-09  Bastien Guerry  <bzg@gnu.org>
+
+       * simple.el (choose-completion-string): Fix docstring (bug#14163).
+
 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
index 9baa1b7c8843d3072ac97b0b13c3cc64da4b85cd..5adb634e19541d57ed441f9e903089755f751718 100644 (file)
@@ -6628,7 +6628,9 @@ the default method of inserting the completion in BUFFER.")
 (defun choose-completion-string (choice &optional
                                         buffer base-position insert-function)
   "Switch to BUFFER and insert the completion choice CHOICE.
-BASE-POSITION, says where to insert the completion."
+BASE-POSITION says where to insert the completion.
+INSERT-FUNCTION says how to insert the completion and falls
+back on `completion-list-insert-choice-function' when nil."
 
   ;; If BUFFER is the minibuffer, exit the minibuffer
   ;; unless it is reading a file name and CHOICE is a directory,