]> git.eshelyaron.com Git - emacs.git/commitdiff
REQUIRE-MATCH doc string clarification
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 2 Jul 2022 20:03:06 +0000 (22:03 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 2 Jul 2022 20:03:06 +0000 (22:03 +0200)
* src/minibuf.c (Fcompleting_read):
* lisp/minibuffer.el (read-file-name): Clarify what the return
value is in the REQUIRE-MATCH function case.

lisp/minibuffer.el
src/minibuf.c

index 69a10ce4e2d77816797fbb13698c93a2b34f6117..8a7da41a3b1e700b6e9f68116eb080692f308dbc 100644 (file)
@@ -3160,8 +3160,9 @@ 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 argument.
-  If it returns a non-nil value, the minibuffer is exited with that value.
+- a function, which will be called with the input as the
+  argument.  If the function returns a non-nil value, the
+  minibuffer is exited with that argument as the value.
 - anything else behaves like t except that typing RET does not exit if it
   does non-null completion.
 
index 85d6ec4434917bb30b4fe919acdcd5592454aaa2..c2e270a450dbb83f75fc9b0b198c0a64ce97bbf5 100644 (file)
@@ -2011,8 +2011,9 @@ REQUIRE-MATCH 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 element of COLLECTION.
-- a function, which will be called with the input as the parameter.
-  If it returns a non-nil value, the minibuffer is exited with that value.
+- a function, which will be called with the input as the
+  argument.  If the function returns a non-nil value, the
+  minibuffer is exited with that argument as the value.
 - anything else behaves like t except that typing RET does not exit if it
   does non-null completion.