diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 5 |
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) | |||
| 1297 | DEFUN ("read-from-minibuffer", Fread_from_minibuffer, | 1297 | DEFUN ("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. |
| 1300 | While in the minibuffer, you can use \\<minibuffer-local-completion-map>\\[minibuffer-complete] and \\[minibuffer-complete-word] to complete your input. | ||
| 1301 | You can also use \\<minibuffer-local-map>\\[minibuffer-complete-history] to complete using history items in the | ||
| 1302 | input history HIST, and you can use \\[minibuffer-complete-defaults] to complete using | ||
| 1303 | the default items in DEFAULT-VALUE. | ||
| 1304 | |||
| 1300 | The optional second arg INITIAL-CONTENTS is an obsolete alternative to | 1305 | The 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. |