summaryrefslogtreecommitdiff
path: root/lisp/shell.el
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2018-07-04 09:04:55 +0200
committerMichael Albinus <michael.albinus@gmx.de>2018-07-04 09:04:55 +0200
commit3bbd4ffc68bcc2b3e003a2179a508b82055ad770 (patch)
tree9579e99c982f6aae53666537b6aa475922c811d9 /lisp/shell.el
parent0bb7dfc39cdb943eeefa6c7e5575eb997fb934ba (diff)
downloademacs-3bbd4ffc68bcc2b3e003a2179a508b82055ad770.tar.gz
* lisp/shell.el (shell-completion-vars):
Set `comint-file-name-prefix' to "" for local default directory.
Diffstat (limited to 'lisp/shell.el')
-rw-r--r--lisp/shell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index c78903b3e5a..fa6eee0f187 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -469,7 +469,7 @@ Shell buffers. It implements `shell-completion-execonly' for
(set (make-local-variable 'comint-file-name-quote-list)
shell-file-name-quote-list)
(set (make-local-variable 'comint-file-name-prefix)
- (file-remote-p default-directory))
+ (or (file-remote-p default-directory) ""))
(set (make-local-variable 'comint-dynamic-complete-functions)
shell-dynamic-complete-functions)
(setq-local comint-unquote-function #'shell--unquote-argument)