emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 7efcdf7: Clarify completion text in the ELisp man


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 7efcdf7: Clarify completion text in the ELisp manual
Date: Mon, 10 Sep 2018 09:21:13 -0400 (EDT)

branch: emacs-26
commit 7efcdf7b3e70f0334caa328cbb5b05a4e30099bd
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Clarify completion text in the ELisp manual
    
    * doc/lispref/minibuf.texi (Programmed Completion): Clarify
    text.  Suggested by Stefan Monnier <address@hidden>.
---
 doc/lispref/minibuf.texi | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi
index 1d1c93d..8fac1c3 100644
--- a/doc/lispref/minibuf.texi
+++ b/doc/lispref/minibuf.texi
@@ -1770,12 +1770,9 @@ flag may be one of the following values.
 @table @code
 @item nil
 This specifies a @code{try-completion} operation.  The function should
-return @code{t} if the specified string is a unique and exact match;
-if there is more than one match, it should return the common substring
-of all matches (if the string is an exact match for one completion
-alternative but also matches other longer alternatives, the return
-value is the string); if there are no matches, it should return
address@hidden
+return @code{nil} if there are no matches; it should return @code{t}
+if the specified string is a unique and exact match; and it should
+return the longest common prefix substring of all matches otherwise.
 
 @item t
 This specifies an @code{all-completions} operation.  The function



reply via email to

[Prev in Thread] Current Thread [Next in Thread]