Mercurial > emacs
changeset 4326:37a37a8300c4
(comint-replace-by-expanded-filename, comint-dynamic-complete): Say "Sole
completion" instead of "Unique completion", for consistency with the rest
of the known universe.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Wed, 28 Jul 1993 22:41:43 +0000 |
parents | afdc363a0c9b |
children | 771786f5d8c2 |
files | lisp/comint.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)))))))