From 5065f906dcd972f83ee26b34ca9124f933f1da02 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 2 Aug 1993 22:56:58 +0000 Subject: [PATCH] (comint-dynamic-completion): Say "Sole completion", not "Unique completion". --- lisp/comint.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))))))) -- 2.11.4.GIT