summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-03-07 18:53:02 +0000
committerKarl Heuer <kwzh@gnu.org>1994-03-07 18:53:02 +0000
commit6300d782d75c06cd6e90be5ce070e7606090a933 (patch)
tree4a5c3d024cd588c169dd322c9f9fe865cd68f06d /src
parenta4e71d81b93c0fc57a45725c7677dbbd4bc77016 (diff)
downloademacs-6300d782d75c06cd6e90be5ce070e7606090a933.tar.gz
(Fminibuffer_complete, Fminibuffer_complete_word): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 82747af86bb..49b3c4d3a8c 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1099,7 +1099,8 @@ assoc_for_completion (key, list)
}
DEFUN ("minibuffer-complete", Fminibuffer_complete, Sminibuffer_complete, 0, 0, "",
- "Complete the minibuffer contents as far as possible.")
+ "Complete the minibuffer contents as far as possible.\n\
+Return nil if there is no valid completion, else t.")
()
{
register int i = do_completion ();
@@ -1162,7 +1163,8 @@ DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word, Sminibuffer_comple
0, 0, "",
"Complete the minibuffer contents at most a single word.\n\
After one word is completed as much as possible, a space or hyphen\n\
-is added, provided that matches some possible completion.")
+is added, provided that matches some possible completion.\n\
+Return nil if there is no valid completion, else t.")
()
{
Lisp_Object completion, tem;