aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2024-12-24 21:25:02 +0200
committerEli Zaretskii2024-12-24 21:25:02 +0200
commit8064b2a67988e815c52e289fe2a235ce1008776f (patch)
treee9b551cbb3d068f4cbab6f7245270f93f29cdaff /src
parentc29b798537eb9573b8f34fa2e91c0e136a095fb4 (diff)
downloademacs-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.c5
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)
1293DEFUN ("read-from-minibuffer", Fread_from_minibuffer, 1293DEFUN ("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.
1296While in the minibuffer, you can use \\<minibuffer-local-completion-map>\\[minibuffer-complete] and \\[minibuffer-complete-word] to complete your input.
1297You can also use \\<minibuffer-local-map>\\[minibuffer-complete-history] to complete using history items in the
1298input history HIST, and you can use \\[minibuffer-complete-defaults] to complete using
1299the default items in DEFAULT-VALUE.
1300
1296The optional second arg INITIAL-CONTENTS is an obsolete alternative to 1301The 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.