diff options
| -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 | |||
| 469 | (set (make-local-variable 'comint-file-name-quote-list) | 469 | (set (make-local-variable 'comint-file-name-quote-list) |
| 470 | shell-file-name-quote-list) | 470 | shell-file-name-quote-list) |
| 471 | (set (make-local-variable 'comint-file-name-prefix) | 471 | (set (make-local-variable 'comint-file-name-prefix) |
| 472 | (file-remote-p default-directory)) | 472 | (or (file-remote-p default-directory) "")) |
| 473 | (set (make-local-variable 'comint-dynamic-complete-functions) | 473 | (set (make-local-variable 'comint-dynamic-complete-functions) |
| 474 | shell-dynamic-complete-functions) | 474 | shell-dynamic-complete-functions) |
| 475 | (setq-local comint-unquote-function #'shell--unquote-argument) | 475 | (setq-local comint-unquote-function #'shell--unquote-argument) |