run-program: fix typo

This commit is contained in:
Daniel Kochmanski 2017-10-09 10:15:21 +02:00
parent a42d199b6a
commit 21f670894a

View file

@ -109,9 +109,9 @@
(external-format :default)
#+windows (escape-arguments t))
(when (eql input t) (setf input *standard-input*))
(when (eql output t) (setf input *standard-output*))
(when (eql error t) (setf input *error-output*))
(when (eql input t) (setf input *standard-input*))
(when (eql output t) (setf output *standard-output*))
(when (eql error t) (setf error *error-output*))
(labels ((process-stream (which &rest args)
(cond ((null which)