diff options
| author | Richard M. Stallman | 1994-09-15 03:31:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-15 03:31:52 +0000 |
| commit | cbbc391717a2e00443f36e407991dfdd7ec74dd8 (patch) | |
| tree | 886591ad99f0fb0c7d06b9ebe261cab2b2b6214f /src | |
| parent | 944fa80ad339e452041b83f6a1325431f49f7822 (diff) | |
| download | emacs-cbbc391717a2e00443f36e407991dfdd7ec74dd8.tar.gz emacs-cbbc391717a2e00443f36e407991dfdd7ec74dd8.zip | |
(Fcompleting_read): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index d3b3f6e6f35..f00113282dd 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -922,9 +922,13 @@ PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\ | |||
| 922 | TABLE is an alist whose elements' cars are strings, or an obarray.\n\ | 922 | TABLE is an alist whose elements' cars are strings, or an obarray.\n\ |
| 923 | PREDICATE limits completion to a subset of TABLE.\n\ | 923 | PREDICATE limits completion to a subset of TABLE.\n\ |
| 924 | See `try-completion' for more details on completion, TABLE, and PREDICATE.\n\ | 924 | See `try-completion' for more details on completion, TABLE, and PREDICATE.\n\ |
| 925 | \n\ | ||
| 925 | If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless\n\ | 926 | If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless\n\ |
| 926 | the input is (or completes to) an element of TABLE or is null.\n\ | 927 | the input is (or completes to) an element of TABLE or is null.\n\ |
| 927 | If it is also not t, Return does not exit if it does non-null completion.\n\ | 928 | If it is also not t, Return does not exit if it does non-null completion.\n\ |
| 929 | If the input is null, `completing-read' returns nil,\n\ | ||
| 930 | regardless of the value of REQUIRE-MATCH.\n\ | ||
| 931 | \n\ | ||
| 928 | If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.\n\ | 932 | If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.\n\ |
| 929 | If it is (STRING . POSITION), the initial input\n\ | 933 | If it is (STRING . POSITION), the initial input\n\ |
| 930 | is STRING, but point is placed POSITION characters into the string.\n\ | 934 | is STRING, but point is placed POSITION characters into the string.\n\ |