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

lisp/eshell/esh-mode.el

index 6df4602f9f61d33c19ad2d726c577824dc7d7a16..b0a0de58cf1280a56023f3d2bab4eab09f382d0c 100644 (file)
@@ -305,7 +305,7 @@ sessions, such as when using `eshell-command'.")
 
   (when eshell-status-in-modeline
     (make-local-variable 'eshell-command-running-string)
-    (let ((fmt (copy-list mode-line-format)))
+    (let ((fmt (eshell-copy-list mode-line-format)))
       (make-local-variable 'mode-line-format)
       (setq mode-line-format fmt))
     (let ((modeline (memq 'mode-line-modified mode-line-format)))
@@ -373,7 +373,7 @@ sessions, such as when using `eshell-command'.")
   (set (make-local-variable 'eshell-last-output-end) (point-marker))
   (set (make-local-variable 'eshell-last-output-block-begin) (point))
 
-  (let ((modules-list (copy-list eshell-modules-list)))
+  (let ((modules-list (eshell-copy-list eshell-modules-list)))
     (make-local-variable 'eshell-modules-list)
     (setq eshell-modules-list modules-list))