branch: elpa/slime
commit 6c7d99473bde63195987ea9bdf11ac545f6f7098
Author: Stas Boukarev <stass...@gmail.com>
Commit: Stas Boukarev <stass...@gmail.com>

    Change fuzzy-completions docstring.
    
    Per #877
---
 contrib/swank-fuzzy.lisp | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/contrib/swank-fuzzy.lisp b/contrib/swank-fuzzy.lisp
index 2c6c184a391..8f1fc61391b 100644
--- a/contrib/swank-fuzzy.lisp
+++ b/contrib/swank-fuzzy.lisp
@@ -39,21 +39,15 @@ function. See Fuzzy Completion in the manual for details.")
 The main result is a list of completion objects, where a completion
 object is:
 
-    (COMPLETED-STRING SCORE (&rest CHUNKS) CLASSIFICATION-STRING)
+    (COMPLETED-STRING CLASSIFICATION-STRING SYMBOL-NAME (&rest CHUNKS))
 
 where a CHUNK is a description of a matched substring:
 
     (OFFSET SUBSTRING)
 
-and FLAGS is short string describing properties of the symbol (see
-SYMBOL-CLASSIFICATION-STRING).
+and CLASSIFICATION-STRING is a short string describing properties of
+the symbol (see SYMBOL-CLASSIFICATION-STRING).
 
-E.g., completing \"mvb\" in a package that uses COMMON-LISP would
-return something like:
-
-    ((\"multiple-value-bind\" 26.588236 ((0 \"m\") (9 \"v\") (15 \"b\"))
-     (:FBOUNDP :MACRO))
-     ...)
 
 If STRING is package qualified the result list will also be
 qualified.  If string is non-qualified the result strings are

Reply via email to