From: Eli Zaretskii Date: Sat, 4 May 2019 09:47:03 +0000 (+0300) Subject: ; * src/minibuf.c (Fread_buffer): Doc fix. (Bug#35361) X-Git-Tag: emacs-27.0.90~2997 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a90ad2297391cf5fe284a4c6e81724360ed018a4;p=emacs.git ; * src/minibuf.c (Fread_buffer): Doc fix. (Bug#35361) --- 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, Optional third arg REQUIRE-MATCH has the same meaning as the REQUIRE-MATCH argument of `completing-read'. Optional arg PREDICATE, if non-nil, is a function limiting the buffers that -can be considered. It will be called with each potential candidate, and +can be considered. It will be called with each potential candidate, in +the form of either a string or a cons cell whose `car' is a string, and should return non-nil to accept the candidate for completion, nil otherwise. If `read-buffer-completion-ignore-case' is non-nil, completion ignores case while reading the buffer name.