From: Roland McGrath Date: Mon, 2 Aug 1993 22:56:58 +0000 (+0000) Subject: (comint-dynamic-completion): Say "Sole completion", not "Unique X-Git-Tag: emacs-19.34~11425 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5065f906dcd972f83ee26b34ca9124f933f1da02;p=emacs.git (comint-dynamic-completion): Say "Sole completion", not "Unique completion". --- diff --git a/lisp/comint.el b/lisp/comint.el index 5e1430a7589..44f09685661 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -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)))))))