diff options
| author | Gerd Moellmann | 2000-01-07 13:56:00 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-01-07 13:56:00 +0000 |
| commit | 834938d20fe1fe26c376a8541ed8b2b26db1c9ad (patch) | |
| tree | b99c34f6c588e36a3082c7388c73d26144ca271f /src | |
| parent | 1804e740063b5775ffb8cd8b011e032abf0fcae9 (diff) | |
| download | emacs-834938d20fe1fe26c376a8541ed8b2b26db1c9ad.tar.gz emacs-834938d20fe1fe26c376a8541ed8b2b26db1c9ad.zip | |
(Fcompleting_read): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/minibuf.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 868137eb5cb..1a4d484fafe 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-01-07 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.c (Fcompleting_read): Doc fix. | ||
| 4 | |||
| 1 | 2000-01-05 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-01-05 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and | 7 | * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and |
diff --git a/src/minibuf.c b/src/minibuf.c index 701006350e8..657726f8f46 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1413,6 +1413,7 @@ DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, | |||
| 1413 | "Read a string in the minibuffer, with completion.\n\ | 1413 | "Read a string in the minibuffer, with completion.\n\ |
| 1414 | PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\ | 1414 | PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\ |
| 1415 | TABLE is an alist whose elements' cars are strings, or an obarray.\n\ | 1415 | TABLE is an alist whose elements' cars are strings, or an obarray.\n\ |
| 1416 | TABLE can also be a function to do the completion itself.\n\ | ||
| 1416 | PREDICATE limits completion to a subset of TABLE.\n\ | 1417 | PREDICATE limits completion to a subset of TABLE.\n\ |
| 1417 | See `try-completion' and `all-completions' for more details\n\ | 1418 | See `try-completion' and `all-completions' for more details\n\ |
| 1418 | on completion, TABLE, and PREDICATE.\n\ | 1419 | on completion, TABLE, and PREDICATE.\n\ |