From: Karl Heuer Date: Mon, 7 Mar 1994 18:53:02 +0000 (+0000) Subject: (Fminibuffer_complete, Fminibuffer_complete_word): Doc fix. X-Git-Tag: emacs-19.34~9618 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6300d782d75c06cd6e90be5ce070e7606090a933;p=emacs.git (Fminibuffer_complete, Fminibuffer_complete_word): Doc fix. --- 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;