diff options
author | Chong Yidong <cyd@gnu.org> | 2012-09-22 23:24:26 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-09-22 23:24:26 +0800 |
commit | c88b867fecbd50140b0b41f05599811a8f0e3dfe (patch) | |
tree | 945c6c88a7ce2029d13af7007239e8253e1e6a44 /src/minibuf.c | |
parent | bb4d86b40c61443608280df3d0668d44845177a5 (diff) | |
download | emacs-c88b867fecbd50140b0b41f05599811a8f0e3dfe.tar.gz |
Misc doc fixes.
* searching.texi (Replacing Match): Minor clarification.
* lisp/repeat.el (repeat): Doc fix.
* lisp/simple.el (shell-command-on-region): Doc fix.
* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
* cmds.c (Fforward_char, Fbackward_char): Doc fix.
* editfns.c (Fline_beginning_position): Doc fix.
(Fline_end_position): Doc fix.
* minibuf.c (Finternal_complete_buffer): Doc fix.
* search.c (Freplace_match): Doc fix.
Fixes: debbugs:12325 debbugs:12391 debbugs:12416 debbugs:12414 debbugs:10909 debbugs:12348
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 8a1e0ddde86..6f9c61dcfb1 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1862,11 +1862,11 @@ static Lisp_Object Qmetadata; DEFUN ("internal-complete-buffer", Finternal_complete_buffer, Sinternal_complete_buffer, 3, 3, 0, doc: /* Perform completion on buffer names. -If the argument FLAG is nil, invoke `try-completion', if it's t, invoke -`all-completions', otherwise invoke `test-completion'. +STRING and PREDICATE have the same meanings as in `try-completion', +`all-completions', and `test-completion'. -The arguments STRING and PREDICATE are as in `try-completion', -`all-completions', and `test-completion'. */) +If FLAG is nil, invoke `try-completion'; if it is t, invoke +`all-completions'; otherwise invoke `test-completion'. */) (Lisp_Object string, Lisp_Object predicate, Lisp_Object flag) { if (NILP (flag)) |