diff options
author | Tassilo Horn <tsdh@gnu.org> | 2013-06-03 08:34:21 +0200 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2013-06-03 08:34:21 +0200 |
commit | 26b3353ad0200b6e3dae8bacbf61c7c069a26b2a (patch) | |
tree | 639659320b2c9e55e6574c625cb1c1b0775666c5 /lisp/eshell/em-term.el | |
parent | c0342369acfbad2f0ea86b949a2f116304186353 (diff) | |
download | emacs-26b3353ad0200b6e3dae8bacbf61c7c069a26b2a.tar.gz |
* NEWS: Document eshell visual subcommands and options.
* eshell/em-term.el (eshell-term-initialize): Use
`cl-intersection' rather than `intersection'.
Diffstat (limited to 'lisp/eshell/em-term.el')
-rw-r--r-- | lisp/eshell/em-term.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/em-term.el b/lisp/eshell/em-term.el index 340cfa7006c..0501544789d 100644 --- a/lisp/eshell/em-term.el +++ b/lisp/eshell/em-term.el @@ -137,9 +137,9 @@ character to the invoked process." (or (member command eshell-visual-commands) (member (car args) (cdr (assoc command eshell-visual-subcommands))) - (intersection args - (cdr (assoc command eshell-visual-options)) - :test 'string=))))) + (cl-intersection args + (cdr (assoc command eshell-visual-options)) + :test 'string=))))) 'eshell-exec-visual) eshell-interpreter-alist))) |