aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2019-05-04 12:47:03 +0300
committerEli Zaretskii2019-05-04 12:47:03 +0300
commita90ad2297391cf5fe284a4c6e81724360ed018a4 (patch)
tree1792b2373d2a82001a0f9d2a858a8687ade2e109 /src
parente93d651b492bdf4432d5ea8b885de93a171c8dd5 (diff)
downloademacs-a90ad2297391cf5fe284a4c6e81724360ed018a4.tar.gz
emacs-a90ad2297391cf5fe284a4c6e81724360ed018a4.zip
; * src/minibuf.c (Fread_buffer): Doc fix. (Bug#35361)
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c3
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,
1062Optional third arg REQUIRE-MATCH has the same meaning as the 1062Optional third arg REQUIRE-MATCH has the same meaning as the
1063 REQUIRE-MATCH argument of `completing-read'. 1063 REQUIRE-MATCH argument of `completing-read'.
1064Optional arg PREDICATE, if non-nil, is a function limiting the buffers that 1064Optional arg PREDICATE, if non-nil, is a function limiting the buffers that
1065can be considered. It will be called with each potential candidate, and 1065can be considered. It will be called with each potential candidate, in
1066the form of either a string or a cons cell whose `car' is a string, and
1066should return non-nil to accept the candidate for completion, nil otherwise. 1067should return non-nil to accept the candidate for completion, nil otherwise.
1067If `read-buffer-completion-ignore-case' is non-nil, completion ignores 1068If `read-buffer-completion-ignore-case' is non-nil, completion ignores
1068case while reading the buffer name. 1069case while reading the buffer name.