diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-09-16 15:37:22 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-09-16 15:37:22 +0300 |
commit | 208c49206950910b21d77f777241e0869c3a4bd9 (patch) | |
tree | 7abdbaa0002f9e790316496902cc2900e73ced68 /src/minibuf.c | |
parent | a9558baaf99ec3878f82a1e1e6225e828c9de532 (diff) | |
download | emacs-208c49206950910b21d77f777241e0869c3a4bd9.tar.gz emacs-208c49206950910b21d77f777241e0869c3a4bd9.tar.bz2 emacs-208c49206950910b21d77f777241e0869c3a4bd9.zip |
; * src/minibuf.c (Ftest_completion): Clarify doc string.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index a0ba86763f4..0e7baf30dca 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -2055,8 +2055,8 @@ See also `completing-read-function'. */) /* Test whether TXT is an exact completion. */ DEFUN ("test-completion", Ftest_completion, Stest_completion, 2, 3, 0, doc: /* Return non-nil if STRING is a valid completion. -For instance, if COLLECTION is a list of strings, this is true if -STRING appears in the list and PREDICATE is satisfied. +For instance, if COLLECTION is a list of strings, STRING is a +valid completion if it appears in the list and PREDICATE is satisfied. Takes the same arguments as `all-completions' and `try-completion'. |