diff options
| author | Romain Francoise | 2006-11-14 19:25:40 +0000 |
|---|---|---|
| committer | Romain Francoise | 2006-11-14 19:25:40 +0000 |
| commit | d089c7a89b56da23e7072959c60d59b39d89eb02 (patch) | |
| tree | 34e24cb74944a43ca0c3f3fea028cca4d4f734b5 /src | |
| parent | 7809b1829608e8e5c17e1aa3a70553038fa39884 (diff) | |
| download | emacs-d089c7a89b56da23e7072959c60d59b39d89eb02.tar.gz emacs-d089c7a89b56da23e7072959c60d59b39d89eb02.zip | |
(Fcompleting_read): Fix typo in docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/minibuf.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 00974511e94..c799feb1b3a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-11-14 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * minibuf.c (Fcompleting_read): Fix typo in docstring. | ||
| 4 | |||
| 1 | 2006-11-14 Kenichi Handa <handa@m17n.org> | 5 | 2006-11-14 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * coding.c (code_convert_region): Initialize | 7 | * coding.c (code_convert_region): Initialize |
diff --git a/src/minibuf.c b/src/minibuf.c index 46c54d8724f..d17e9238a1c 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1683,7 +1683,7 @@ Lisp_Object Vminibuffer_completing_file_name; | |||
| 1683 | DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, | 1683 | DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, |
| 1684 | doc: /* Read a string in the minibuffer, with completion. | 1684 | doc: /* Read a string in the minibuffer, with completion. |
| 1685 | PROMPT is a string to prompt with; normally it ends in a colon and a space. | 1685 | PROMPT is a string to prompt with; normally it ends in a colon and a space. |
| 1686 | TABLE can be an list of strings, an alist, an obarray or a hash table. | 1686 | TABLE can be a list of strings, an alist, an obarray or a hash table. |
| 1687 | TABLE can also be a function to do the completion itself. | 1687 | TABLE can also be a function to do the completion itself. |
| 1688 | PREDICATE limits completion to a subset of TABLE. | 1688 | PREDICATE limits completion to a subset of TABLE. |
| 1689 | See `try-completion' and `all-completions' for more details | 1689 | See `try-completion' and `all-completions' for more details |