Bob Halley <halley@play-bow.org>: (eshell-set-output-handle): Fix so

that multiple redirection can work.
This commit is contained in:
John Wiegley 2002-10-22 18:22:24 +00:00
parent 44f4a515d0
commit 2c762cee38

View file

@ -396,7 +396,7 @@ it defaults to `insert'."
(if (and (listp current)
(not (member where current)))
(setq current (append current (list where)))
(setq current where))
(setq current (list where)))
(if (not (aref eshell-current-handles index))
(aset eshell-current-handles index (cons nil 1)))
(setcar (aref eshell-current-handles index) current)))))