aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1993-08-02 22:56:58 +0000
committerRoland McGrath1993-08-02 22:56:58 +0000
commit5065f906dcd972f83ee26b34ca9124f933f1da02 (patch)
tree565129accd0b76e66de7182ffe4ff5c0829b6144
parentceab6935fd988c7d31e2bf725f6af3d12773b6ce (diff)
downloademacs-5065f906dcd972f83ee26b34ca9124f933f1da02.tar.gz
emacs-5065f906dcd972f83ee26b34ca9124f933f1da02.zip
(comint-dynamic-completion): Say "Sole completion", not "Unique
completion".
-rw-r--r--lisp/comint.el2
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."
1190 (message "No completions of %s" pathname) 1190 (message "No completions of %s" pathname)
1191 (ding)) 1191 (ding))
1192 ((eql completion t) 1192 ((eql completion t)
1193 (message "Unique completion")) 1193 (message "Sole completion"))
1194 (t ; this means a string was returned. 1194 (t ; this means a string was returned.
1195 (goto-char (match-end 0)) 1195 (goto-char (match-end 0))
1196 (insert (substring completion (length pathnondir))))))) 1196 (insert (substring completion (length pathnondir)))))))