(comint-dynamic-completion): Say "Sole completion", not "Unique
authorRoland McGrath <roland@gnu.org>
Mon, 2 Aug 1993 22:56:58 +0000 (22:56 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 2 Aug 1993 22:56:58 +0000 (22:56 +0000)
completion".

lisp/comint.el

index 5e1430a..44f0968 100644 (file)
@@ -1190,7 +1190,7 @@ it just adds completion characters to the end of the filename."
           (message "No completions of %s" pathname)
           (ding))
          ((eql completion t)
-          (message "Unique completion"))
+          (message "Sole completion"))
          (t                            ; this means a string was returned.
           (goto-char (match-end 0))
           (insert (substring completion (length pathnondir)))))))