]> git.eshelyaron.com Git - emacs.git/commitdiff
(eshell-sublist): Use eshell-copy-list
authorGerd Moellmann <gerd@gnu.org>
Fri, 23 Jun 2000 04:53:48 +0000 (04:53 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 23 Jun 2000 04:53:48 +0000 (04:53 +0000)
instead of copy-list.

lisp/eshell/esh-util.el

index eb69e5e0f985e02df48ef34509dfcddf8bb6b686..cf789930ae0d44a854a36aba8f76aca5ce54cac9 100644 (file)
@@ -206,7 +206,7 @@ then quoting is done by a backslash, rather than a doubled delimiter."
 (defun eshell-sublist (l &optional n m)
   "Return from LIST the N to M elements.
 If N or M is nil, it means the end of the list."
-  (let* ((a (copy-list l))
+  (let* ((a (eshell-copy-list l))
         result)
     (if (and m (consp (nthcdr m a)))
        (setcdr (nthcdr m a) nil))