diff options
| author | Eli Zaretskii | 2019-05-04 12:47:03 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-05-04 12:47:03 +0300 |
| commit | a90ad2297391cf5fe284a4c6e81724360ed018a4 (patch) | |
| tree | 1792b2373d2a82001a0f9d2a858a8687ade2e109 /src | |
| parent | e93d651b492bdf4432d5ea8b885de93a171c8dd5 (diff) | |
| download | emacs-a90ad2297391cf5fe284a4c6e81724360ed018a4.tar.gz emacs-a90ad2297391cf5fe284a4c6e81724360ed018a4.zip | |
; * src/minibuf.c (Fread_buffer): Doc fix. (Bug#35361)
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 10fd5e56ac3..2bf6bc25946 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1062,7 +1062,8 @@ Optional second arg DEF is value to return if user enters an empty line, | |||
| 1062 | Optional third arg REQUIRE-MATCH has the same meaning as the | 1062 | Optional third arg REQUIRE-MATCH has the same meaning as the |
| 1063 | REQUIRE-MATCH argument of `completing-read'. | 1063 | REQUIRE-MATCH argument of `completing-read'. |
| 1064 | Optional arg PREDICATE, if non-nil, is a function limiting the buffers that | 1064 | Optional arg PREDICATE, if non-nil, is a function limiting the buffers that |
| 1065 | can be considered. It will be called with each potential candidate, and | 1065 | can be considered. It will be called with each potential candidate, in |
| 1066 | the form of either a string or a cons cell whose `car' is a string, and | ||
| 1066 | should return non-nil to accept the candidate for completion, nil otherwise. | 1067 | should return non-nil to accept the candidate for completion, nil otherwise. |
| 1067 | If `read-buffer-completion-ignore-case' is non-nil, completion ignores | 1068 | If `read-buffer-completion-ignore-case' is non-nil, completion ignores |
| 1068 | case while reading the buffer name. | 1069 | case while reading the buffer name. |