diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2018-07-04 09:04:55 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2018-07-04 09:04:55 +0200 |
commit | 3bbd4ffc68bcc2b3e003a2179a508b82055ad770 (patch) | |
tree | 9579e99c982f6aae53666537b6aa475922c811d9 /lisp/shell.el | |
parent | 0bb7dfc39cdb943eeefa6c7e5575eb997fb934ba (diff) | |
download | emacs-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.el | 2 |
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) |