summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-term.el
diff options
context:
space:
mode:
authorTassilo Horn <tsdh@gnu.org>2013-06-03 08:34:21 +0200
committerTassilo Horn <tsdh@gnu.org>2013-06-03 08:34:21 +0200
commit26b3353ad0200b6e3dae8bacbf61c7c069a26b2a (patch)
tree639659320b2c9e55e6574c625cb1c1b0775666c5 /lisp/eshell/em-term.el
parentc0342369acfbad2f0ea86b949a2f116304186353 (diff)
downloademacs-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.el6
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)))