aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index e50913a013f..5095e198fef 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1297,6 +1297,11 @@ barf_if_interaction_inhibited (void)
1297DEFUN ("read-from-minibuffer", Fread_from_minibuffer, 1297DEFUN ("read-from-minibuffer", Fread_from_minibuffer,
1298 Sread_from_minibuffer, 1, 7, 0, 1298 Sread_from_minibuffer, 1, 7, 0,
1299 doc: /* Read a string from the minibuffer, prompting with string PROMPT. 1299 doc: /* Read a string from the minibuffer, prompting with string PROMPT.
1300While in the minibuffer, you can use \\<minibuffer-local-completion-map>\\[minibuffer-complete] and \\[minibuffer-complete-word] to complete your input.
1301You can also use \\<minibuffer-local-map>\\[minibuffer-complete-history] to complete using history items in the
1302input history HIST, and you can use \\[minibuffer-complete-defaults] to complete using
1303the default items in DEFAULT-VALUE.
1304
1300The optional second arg INITIAL-CONTENTS is an obsolete alternative to 1305The optional second arg INITIAL-CONTENTS is an obsolete alternative to
1301 DEFAULT-VALUE. It normally should be nil in new code, except when 1306 DEFAULT-VALUE. It normally should be nil in new code, except when
1302 HIST is a cons. It is discussed in more detail below. 1307 HIST is a cons. It is discussed in more detail below.