# HG changeset patch # User Roland McGrath # Date 744332218 0 # Node ID fe5912b3526ae49b3964748028d6e532d5e43762 # Parent 1b48826df9cb37b37892d735f05249467d3cd546 (comint-dynamic-completion): Say "Sole completion", not "Unique completion". diff -r 1b48826df9cb -r fe5912b3526a lisp/comint.el --- a/lisp/comint.el Mon Aug 02 22:18:34 1993 +0000 +++ b/lisp/comint.el Mon Aug 02 22:56:58 1993 +0000 @@ -1190,7 +1190,7 @@ (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)))))))