summaryrefslogtreecommitdiff
path: root/lisp/eshell
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-06-10 08:32:45 +0000
committerRichard M. Stallman <rms@gnu.org>2002-06-10 08:32:45 +0000
commit655e9ea9808931c783db44fdcac990144d4ae22d (patch)
tree64dd66f38202b419c71110029a940c547a390cc9 /lisp/eshell
parent3238a55c37a3ec4e73ffd4a3202d70fd231328ac (diff)
downloademacs-655e9ea9808931c783db44fdcac990144d4ae22d.tar.gz
(eshell/diff): Use copy-sequence.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/em-unix.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el
index 0a41b04875e..b9fce8a55a7 100644
--- a/lisp/eshell/em-unix.el
+++ b/lisp/eshell/em-unix.el
@@ -955,7 +955,7 @@ Show wall-clock time elapsed during execution of COMMAND.")
(not eshell-in-subcommand-p))))
(throw 'eshell-replace-command
(eshell-parse-command "*diff" orig-args))
- (setq args (eshell-copy-list orig-args))
+ (setq args (copy-sequence orig-args))
(if (< (length args) 2)
(throw 'eshell-replace-command
(eshell-parse-command "*diff" orig-args)))