1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-19 18:13:55 +00:00

(comint-replace-by-expanded-filename, comint-dynamic-complete): Say "Sole

completion" instead of "Unique completion", for consistency with the rest
of the known universe.
This commit is contained in:
Roland McGrath 1993-07-28 22:41:43 +00:00
parent 08cb6a9f5b
commit caf772a29b

View File

@ -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)))))))