]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-replace-by-expanded-filename, comint-dynamic-complete): Say "Sole
authorRoland McGrath <roland@gnu.org>
Wed, 28 Jul 1993 22:41:43 +0000 (22:41 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 28 Jul 1993 22:41:43 +0000 (22:41 +0000)
completion" instead of "Unique completion", for consistency with the rest
of the known universe.

lisp/comint.el

index 9f09a738c81f9d888660543954f71e22ef8e8e5f..5e1430a7589f82b86278eb8afae0d9c63b4a2dff 100644 (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)))))))