# HG changeset patch # User Juanma Barranquero # Date 1159045512 0 # Node ID fcfd01b24e1ee752fc6e6c5885990a70bc4cf436 # Parent 40a575bcdf72c177d61c5c8de01629ca8a8d9496 (Finternal_complete_buffer, Fread_minibuffer, Fdisplay_completion_list): Fix typos in docstrings. diff -r 40a575bcdf72 -r fcfd01b24e1e src/minibuf.c --- a/src/minibuf.c Sat Sep 23 19:34:38 2006 +0000 +++ b/src/minibuf.c Sat Sep 23 21:05:12 2006 +0000 @@ -1021,7 +1021,7 @@ Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS is a string to insert in the minibuffer before reading. \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such -arguments are used as in `read-from-minibuffer') */) +arguments are used as in `read-from-minibuffer'.) */) (prompt, initial_contents) Lisp_Object prompt, initial_contents; { @@ -1910,7 +1910,7 @@ If the argument FLAG is nil, invoke `try-completion', if it's t, invoke `all-completions', otherwise invoke `test-completion'. -The arguments STRING and PREDICATE are as in `try-completion', +The arguments STRING and PREDICATE are as in `try-completion', `all-completions', and `test-completion'. */) (string, predicate, flag) Lisp_Object string, predicate, flag; @@ -2411,7 +2411,7 @@ It is used to put faces, `completions-first-difference' and `completions-common-part' on the completion buffer. The `completions-common-part' face is put on the common substring -specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil +specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil and the current buffer is not the minibuffer, the faces are not put. Internally, COMMON-SUBSTRING is bound to `completion-common-substring' during running `completion-setup-hook'. */)