summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-hist.el
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2017-11-22 21:59:35 -0500
committerNoam Postavsky <npostavs@gmail.com>2017-12-03 15:39:02 -0500
commit1cdd0e8cd801aa1d6f04ab4d8e6097a46af8c951 (patch)
tree915614a8b3b96a53767a3fc2c38fa5d530c6ad76 /lisp/eshell/em-hist.el
parentcfa50d30f2876ca30158082e9a91d19e804a7e09 (diff)
downloademacs-1cdd0e8cd801aa1d6f04ab4d8e6097a46af8c951.tar.gz
emacs-1cdd0e8cd801aa1d6f04ab4d8e6097a46af8c951.tar.bz2
emacs-1cdd0e8cd801aa1d6f04ab4d8e6097a46af8c951.zip
Disable history expansion in eshell (Bug#29157)
History expansion is not so useful since interactive history commands are already provided. It can produce surprising errors when the user is not aware of the history designator syntax. * lisp/eshell/em-hist.el (eshell-hist-initialize): Don't add eshell-expand-history-references to eshell-expand-input-functions. * etc/NEWS: Announce it.
Diffstat (limited to 'lisp/eshell/em-hist.el')
-rw-r--r--lisp/eshell/em-hist.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el
index 8084c126530..df462a70587 100644
--- a/lisp/eshell/em-hist.el
+++ b/lisp/eshell/em-hist.el
@@ -218,9 +218,6 @@ Returns nil if INPUT is prepended by blank space, otherwise non-nil."
(defun eshell-hist-initialize ()
"Initialize the history management code for one Eshell buffer."
- (add-hook 'eshell-expand-input-functions
- 'eshell-expand-history-references nil t)
-
(when (eshell-using-module 'eshell-cmpl)
(add-hook 'pcomplete-try-first-hook
'eshell-complete-history-reference nil t))