# HG changeset patch # User Roland McGrath # Date 743899303 0 # Node ID 37a37a8300c416400de1dfc387e0a7400d490be8 # Parent afdc363a0c9be72c1fe333d5c71965613a371c2c (comint-replace-by-expanded-filename, comint-dynamic-complete): Say "Sole completion" instead of "Unique completion", for consistency with the rest of the known universe. diff -r afdc363a0c9b -r 37a37a8300c4 lisp/comint.el --- a/lisp/comint.el Wed Jul 28 19:09:08 1993 +0000 +++ b/lisp/comint.el Wed Jul 28 22:41:43 1993 +0000 @@ -1169,7 +1169,7 @@ (message "No completions of %s" pathname) (ding)) ((eql completion t) - (message "Unique completion")) + (message "Sole completion")) (t ; this means a string was returned. (delete-region (match-beginning 0) (match-end 0)) (insert (expand-file-name (concat pathdir completion)))))))