From: Roland McGrath Date: Wed, 28 Jul 1993 22:41:43 +0000 (+0000) Subject: (comint-replace-by-expanded-filename, comint-dynamic-complete): Say "Sole X-Git-Tag: emacs-19.34~11525 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=caf772a29bb0fc4fa2eb89bb72c20e21dce7e69c;p=emacs.git (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 --git a/lisp/comint.el b/lisp/comint.el index 9f09a738c81..5e1430a7589 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1169,7 +1169,7 @@ See functions `expand-file-name' and `substitute-in-file-name'. See also (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)))))))