diff options
| -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 9f09a738c81..5e1430a7589 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -1169,7 +1169,7 @@ See functions `expand-file-name' and `substitute-in-file-name'. See also | |||
| 1169 | (message "No completions of %s" pathname) | 1169 | (message "No completions of %s" pathname) |
| 1170 | (ding)) | 1170 | (ding)) |
| 1171 | ((eql completion t) | 1171 | ((eql completion t) |
| 1172 | (message "Unique completion")) | 1172 | (message "Sole completion")) |
| 1173 | (t ; this means a string was returned. | 1173 | (t ; this means a string was returned. |
| 1174 | (delete-region (match-beginning 0) (match-end 0)) | 1174 | (delete-region (match-beginning 0) (match-end 0)) |
| 1175 | (insert (expand-file-name (concat pathdir completion))))))) | 1175 | (insert (expand-file-name (concat pathdir completion))))))) |