diff options
author | Roland McGrath <roland@gnu.org> | 1993-08-02 22:56:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1993-08-02 22:56:58 +0000 |
commit | 4c6b1c03426651664e0aedfd1564faa5162f3d6a (patch) | |
tree | f0b2e08d2f67a40b300ca51e05ed68f71ac834cb /lisp/comint.el | |
parent | a2aa86191eb3c00812c05be494d978da6ea5c413 (diff) | |
download | emacs-4c6b1c03426651664e0aedfd1564faa5162f3d6a.tar.gz |
(comint-dynamic-completion): Say "Sole completion", not "Unique
completion".
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))))))) |