summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2019-03-15 11:15:06 +0200
committerEli Zaretskii <eliz@gnu.org>2019-03-15 11:15:06 +0200
commit0f325d193e3787bf0e69d539783dd1ce414463c3 (patch)
treeb13b453d16ff1bc31470d2a18b33632ddd384490
parentbc75589b905f70753ce2ce5f854efb423781287e (diff)
downloademacs-0f325d193e3787bf0e69d539783dd1ce414463c3.tar.gz
Don't clobber 'comint-input-autoexpand' in 'read-shell-command'
* lisp/shell.el (shell-completion-vars): Set only the buffer-local value of 'comint-input-autoexpand'. (Bug#34815)
-rw-r--r--lisp/shell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index e30825cd662..78227ca7351 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -483,7 +483,7 @@ Shell buffers. It implements `shell-completion-execonly' for
;; Don't use pcomplete's defaulting mechanism, rely on
;; shell-dynamic-complete-functions instead.
(set (make-local-variable 'pcomplete-default-completion-function) #'ignore)
- (setq comint-input-autoexpand shell-input-autoexpand)
+ (setq-local comint-input-autoexpand shell-input-autoexpand)
;; Not needed in shell-mode because it's inherited from comint-mode, but
;; placed here for read-shell-command.
(add-hook 'completion-at-point-functions 'comint-completion-at-point nil t))