diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-06-10 14:22:18 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-06-10 14:22:18 +0300 |
commit | dc09759c1d1e7d7c6118fd8e582aaa57454cf001 (patch) | |
tree | df2d10dd503f72cef0db736245d3fdfc38dd4962 /lisp/minibuffer.el | |
parent | 0afaf53c6ed2c2e915dbe87f062ce851b3f48dce (diff) | |
download | emacs-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.el | 4 |
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. |