1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 01:41:01 -08:00

(Finternal_complete_buffer, Fread_minibuffer, Fdisplay_completion_list):

Fix typos in docstrings.
This commit is contained in:
Juanma Barranquero 2006-09-23 21:07:44 +00:00
parent 98da283bf0
commit ba5524f4af
2 changed files with 9 additions and 5 deletions

View file

@ -1,11 +1,15 @@
2006-09-23 Juanma Barranquero <lekktu@gmail.com>
* minibuf.c (Finternal_complete_buffer, Fread_minibuffer)
(Fdisplay_completion_list): Fix typos in docstrings.
2006-09-23 Romain Francoise <romain@orebokech.com>
* s/gnu-linux.h (MAIL_USE_FLOCK): Check for HAVE_LIBLOCKFILE too.
2006-09-23 Kenichi Handa <handa@m17n.org>
* keymap.c (Fmap_keymap): Docstring mentions about generic
character.
* keymap.c (Fmap_keymap): Docstring mentions about generic character.
2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>

View file

@ -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'. */)