diff options
| author | Eli Zaretskii | 2024-12-24 21:25:02 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-12-24 21:25:02 +0200 |
| commit | 8064b2a67988e815c52e289fe2a235ce1008776f (patch) | |
| tree | e9b551cbb3d068f4cbab6f7245270f93f29cdaff /src | |
| parent | c29b798537eb9573b8f34fa2e91c0e136a095fb4 (diff) | |
| download | emacs-8064b2a67988e815c52e289fe2a235ce1008776f.tar.gz emacs-8064b2a67988e815c52e289fe2a235ce1008776f.zip | |
Document undocumented completion commands
* src/minibuf.c (Fread_from_minibuffer):
* lisp/minibuffer.el (minibuffer-complete-history)
(minibuffer-complete-defaults): Doc fixes.
* doc/emacs/mini.texi (Completion Commands): Fix markup, style of
describing commands, and indexing. Document 'C-x UP' and 'C-x
DOWN'.
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 f16880011f7..83b1fa024f8 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1293,6 +1293,11 @@ barf_if_interaction_inhibited (void) | |||
| 1293 | DEFUN ("read-from-minibuffer", Fread_from_minibuffer, | 1293 | DEFUN ("read-from-minibuffer", Fread_from_minibuffer, |
| 1294 | Sread_from_minibuffer, 1, 7, 0, | 1294 | Sread_from_minibuffer, 1, 7, 0, |
| 1295 | doc: /* Read a string from the minibuffer, prompting with string PROMPT. | 1295 | doc: /* Read a string from the minibuffer, prompting with string PROMPT. |
| 1296 | While in the minibuffer, you can use \\<minibuffer-local-completion-map>\\[minibuffer-complete] and \\[minibuffer-complete-word] to complete your input. | ||
| 1297 | You can also use \\<minibuffer-local-map>\\[minibuffer-complete-history] to complete using history items in the | ||
| 1298 | input history HIST, and you can use \\[minibuffer-complete-defaults] to complete using | ||
| 1299 | the default items in DEFAULT-VALUE. | ||
| 1300 | |||
| 1296 | The optional second arg INITIAL-CONTENTS is an obsolete alternative to | 1301 | The optional second arg INITIAL-CONTENTS is an obsolete alternative to |
| 1297 | DEFAULT-VALUE. It normally should be nil in new code, except when | 1302 | DEFAULT-VALUE. It normally should be nil in new code, except when |
| 1298 | HIST is a cons. It is discussed in more detail below. | 1303 | HIST is a cons. It is discussed in more detail below. |