summaryrefslogtreecommitdiff
path: root/lisp/minibuffer.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2022-06-10 14:22:18 +0300
committerEli Zaretskii <eliz@gnu.org>2022-06-10 14:22:18 +0300
commitdc09759c1d1e7d7c6118fd8e582aaa57454cf001 (patch)
treedf2d10dd503f72cef0db736245d3fdfc38dd4962 /lisp/minibuffer.el
parent0afaf53c6ed2c2e915dbe87f062ce851b3f48dce (diff)
downloademacs-dc09759c1d1e7d7c6118fd8e582aaa57454cf001.tar.gz
emacs-dc09759c1d1e7d7c6118fd8e582aaa57454cf001.tar.bz2
emacs-dc09759c1d1e7d7c6118fd8e582aaa57454cf001.zip
; Fix documentation of 'completing-read' and friends
* src/minibuf.c (Fcompleting_read): * lisp/minibuffer.el (read-file-name): * doc/lispref/minibuf.texi (Minibuffer Completion): * etc/NEWS: Fix typos and wording of the description of the REQUIRE-MATCH argument to 'completing-read'.
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r--lisp/minibuffer.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 332e3fcce97..bf89874ecc8 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -3161,8 +3161,8 @@ Fourth arg MUSTMATCH can take the following values:
input, but she needs to confirm her choice if she called
`minibuffer-complete' right before `minibuffer-complete-and-exit'
and the input is not an existing file.
-- a function, which will be called with the input as the parameter.
- If it returns a non-nil value, we exit with that value.
+- a function, which will be called with the input as the argument.
+ If it returns a non-nil value, the minibuffer is exited with that value.
- anything else behaves like t except that typing RET does not exit if it
does non-null completion.