Skip to content
Snippets Groups Projects
Commit 1d0adefe authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix interactive launch-program on ECL

Just as with %use-system, we need to restore the original *stdin*, etc.,
around calls to run-program for :interactive to work properly
and not behave in a funky way in e.g. SLIME.
parent dadf2b7f
No related branches found
No related tags found
No related merge requests found
......@@ -505,6 +505,9 @@ LAUNCH-PROGRAM returns a PROCESS-INFO object."
(%handle-if-does-not-exist input if-input-does-not-exist)
(%handle-if-exists output if-output-exists)
(%handle-if-exists error-output if-error-output-exists))
#+ecl (let ((*standard-input* *stdin*)
(*standard-output* *stdout*)
(*error-output* *stderr*)))
(let ((process-info (make-instance 'process-info))
(input (%normalize-io-specifier input :input))
(output (%normalize-io-specifier output :output))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment