diff options
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))) |