aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/minibuf.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index b00662b2000..e606d359f59 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1447,14 +1447,17 @@ See `try-completion' and `all-completions' for more details
1447 1447
1448If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless 1448If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
1449 the input is (or completes to) an element of TABLE or is null. 1449 the input is (or completes to) an element of TABLE or is null.
1450 If it is also not t, Return does not exit if it does non-null completion. 1450 If it is also not t, typing RET does not exit if it does non-null completion.
1451If the input is null, `completing-read' returns an empty string, 1451If the input is null, `completing-read' returns an empty string,
1452 regardless of the value of REQUIRE-MATCH. 1452 regardless of the value of REQUIRE-MATCH.
1453 1453
1454If INITIAL-INPUT is non-nil, insert it in the minibuffer initially. 1454If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
1455 If it is (STRING . POSITION), the initial input 1455 If it is (STRING . POSITION), the initial input
1456 is STRING, but point is placed POSITION characters into the string. 1456 is STRING, but point is placed POSITION characters into the string.
1457 This feature is deprecated--it is best to pass nil for INITIAL. 1457 This feature is deprecated--it is best to pass nil for INITIAL-INPUT
1458 and supply the default value DEF instead. The user can yank the
1459 default value into the minibuffer easily using \\[next-history-element].
1460
1458HIST, if non-nil, specifies a history list 1461HIST, if non-nil, specifies a history list
1459 and optionally the initial position in the list. 1462 and optionally the initial position in the list.
1460 It can be a symbol, which is the history list variable to use, 1463 It can be a symbol, which is the history list variable to use,