aboutsummaryrefslogtreecommitdiffstats
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2006-09-23 21:07:44 +0000
committerJuanma Barranquero <[email protected]>2006-09-23 21:07:44 +0000
commitba5524f4afeb3b8b1fa133728ba6db4e147dbf74 (patch)
tree0e605bc44ec56b5242e411ebf4082b4a017c0451 /src/minibuf.c
parent98da283bf04e9b364ba4a39c9cf0d197a10cdab5 (diff)
(Finternal_complete_buffer, Fread_minibuffer, Fdisplay_completion_list):
Fix typos in docstrings.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 58da538572..ea065a6b4e 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1021,7 +1021,7 @@ DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
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 @@ DEFUN ("internal-complete-buffer", Finternal_complete_buffer, Sinternal_complete
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 @@ The optional second arg COMMON-SUBSTRING is a string.
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'. */)