[slime-cvs] CVS slime

CVS User crhodes crhodes at common-lisp.net
Tue Sep 13 22:20:41 UTC 2011


Update of /project/slime/cvsroot/slime
In directory tiger.common-lisp.net:/tmp/cvs-serv1919

Modified Files:
	ChangeLog slime.el 
Log Message:
minor simple-completion change

only display "[Complete but not unique]" in the minibuffer if the
possibly-partial completion is in fact a full completion.


--- /project/slime/cvsroot/slime/ChangeLog	2011/09/01 06:29:30	1.2214
+++ /project/slime/cvsroot/slime/ChangeLog	2011/09/13 22:20:41	1.2215
@@ -1,3 +1,9 @@
+2011-09-13  Christophe Rhodes  <csr21 at cantab.net>
+
+	* slime.el (slime-simple-complete-symbol): only display "Complete
+	but not unique" message if the partial completion figures in the
+	completion list.
+
 2011-08-31  Anton Kovalenko  <anton at sw4me.com>
 
 	* swank-sbcl.lisp (preferred-communication-style): check for
--- /project/slime/cvsroot/slime/slime.el	2011/08/18 09:41:15	1.1374
+++ /project/slime/cvsroot/slime/slime.el	2011/09/13 22:20:41	1.1375
@@ -3727,8 +3727,9 @@
                    (slime-complete-restore-window-configuration))
                   ;; Incomplete
                   (t
-                   (slime-minibuffer-respecting-message
-                    "Complete but not unique")
+                   (when (member partial completions)
+                     (slime-minibuffer-respecting-message
+                      "Complete but not unique"))
                    (slime-display-or-scroll-completions completions
                                                         partial))))))))
 





More information about the slime-cvs mailing list