diff options
| author | Juanma Barranquero | 2006-09-23 21:07:44 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-09-23 21:07:44 +0000 |
| commit | ba5524f4afeb3b8b1fa133728ba6db4e147dbf74 (patch) | |
| tree | 0e605bc44ec56b5242e411ebf4082b4a017c0451 /src | |
| parent | 98da283bf04e9b364ba4a39c9cf0d197a10cdab5 (diff) | |
| download | emacs-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/ChangeLog | 8 | ||||
| -rw-r--r-- | src/minibuf.c | 6 |
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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-09-23 Romain Francoise <romain@orebokech.com> | 6 | 2006-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 | ||
| 5 | 2006-09-23 Kenichi Handa <handa@m17n.org> | 10 | 2006-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 | ||
| 10 | 2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca> | 14 | 2006-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, | |||
| 1021 | Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS | 1021 | Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS |
| 1022 | is a string to insert in the minibuffer before reading. | 1022 | is 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 |
| 1024 | arguments are used as in `read-from-minibuffer') */) | 1024 | arguments 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 | |||
| 1910 | If the argument FLAG is nil, invoke `try-completion', if it's t, invoke | 1910 | If 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 | ||
| 1913 | The arguments STRING and PREDICATE are as in `try-completion', | 1913 | The 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. | |||
| 2411 | It is used to put faces, `completions-first-difference' and | 2411 | It 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 |
| 2414 | specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil | 2414 | specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil |
| 2415 | and the current buffer is not the minibuffer, the faces are not put. | 2415 | and the current buffer is not the minibuffer, the faces are not put. |
| 2416 | Internally, COMMON-SUBSTRING is bound to `completion-common-substring' | 2416 | Internally, COMMON-SUBSTRING is bound to `completion-common-substring' |
| 2417 | during running `completion-setup-hook'. */) | 2417 | during running `completion-setup-hook'. */) |