aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2006-09-23 21:07:44 +0000
committerJuanma Barranquero2006-09-23 21:07:44 +0000
commitba5524f4afeb3b8b1fa133728ba6db4e147dbf74 (patch)
tree0e605bc44ec56b5242e411ebf4082b4a017c0451 /src
parent98da283bf04e9b364ba4a39c9cf0d197a10cdab5 (diff)
downloademacs-ba5524f4afeb3b8b1fa133728ba6db4e147dbf74.tar.gz
emacs-ba5524f4afeb3b8b1fa133728ba6db4e147dbf74.zip
(Finternal_complete_buffer, Fread_minibuffer, Fdisplay_completion_list):
Fix typos in docstrings.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/minibuf.c6
2 files changed, 9 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 12a6ef0dd1c..fe2f34c2038 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,11 +1,15 @@
12006-09-23 Juanma Barranquero <lekktu@gmail.com>
2
3 * minibuf.c (Finternal_complete_buffer, Fread_minibuffer)
4 (Fdisplay_completion_list): Fix typos in docstrings.
5
12006-09-23 Romain Francoise <romain@orebokech.com> 62006-09-23 Romain Francoise <romain@orebokech.com>
2 7
3 * s/gnu-linux.h (MAIL_USE_FLOCK): Check for HAVE_LIBLOCKFILE too. 8 * s/gnu-linux.h (MAIL_USE_FLOCK): Check for HAVE_LIBLOCKFILE too.
4 9
52006-09-23 Kenichi Handa <handa@m17n.org> 102006-09-23 Kenichi Handa <handa@m17n.org>
6 11
7 * keymap.c (Fmap_keymap): Docstring mentions about generic 12 * keymap.c (Fmap_keymap): Docstring mentions about generic character.
8 character.
9 13
102006-09-22 Stefan Monnier <monnier@iro.umontreal.ca> 142006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
11 15
diff --git a/src/minibuf.c b/src/minibuf.c
index 58da5385728..ea065a6b4e8 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1021,7 +1021,7 @@ DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
1021Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS 1021Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1022is a string to insert in the minibuffer before reading. 1022is a string to insert in the minibuffer before reading.
1023\(INITIAL-CONTENTS can also be a cons of a string and an integer. Such 1023\(INITIAL-CONTENTS can also be a cons of a string and an integer. Such
1024arguments are used as in `read-from-minibuffer') */) 1024arguments are used as in `read-from-minibuffer'.) */)
1025 (prompt, initial_contents) 1025 (prompt, initial_contents)
1026 Lisp_Object prompt, initial_contents; 1026 Lisp_Object prompt, initial_contents;
1027{ 1027{
@@ -1910,7 +1910,7 @@ DEFUN ("internal-complete-buffer", Finternal_complete_buffer, Sinternal_complete
1910If the argument FLAG is nil, invoke `try-completion', if it's t, invoke 1910If the argument FLAG is nil, invoke `try-completion', if it's t, invoke
1911`all-completions', otherwise invoke `test-completion'. 1911`all-completions', otherwise invoke `test-completion'.
1912 1912
1913The arguments STRING and PREDICATE are as in `try-completion', 1913The arguments STRING and PREDICATE are as in `try-completion',
1914`all-completions', and `test-completion'. */) 1914`all-completions', and `test-completion'. */)
1915 (string, predicate, flag) 1915 (string, predicate, flag)
1916 Lisp_Object string, predicate, flag; 1916 Lisp_Object string, predicate, flag;
@@ -2411,7 +2411,7 @@ The optional second arg COMMON-SUBSTRING is a string.
2411It is used to put faces, `completions-first-difference' and 2411It is used to put faces, `completions-first-difference' and
2412`completions-common-part' on the completion buffer. The 2412`completions-common-part' on the completion buffer. The
2413`completions-common-part' face is put on the common substring 2413`completions-common-part' face is put on the common substring
2414specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil 2414specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil
2415and the current buffer is not the minibuffer, the faces are not put. 2415and the current buffer is not the minibuffer, the faces are not put.
2416Internally, COMMON-SUBSTRING is bound to `completion-common-substring' 2416Internally, COMMON-SUBSTRING is bound to `completion-common-substring'
2417during running `completion-setup-hook'. */) 2417during running `completion-setup-hook'. */)