Commit 5974da1d authored by Robert Goldman's avatar Robert Goldman
Browse files

Merge branch 'bug/abcl-interactive-output' into 'master'

Bug fix: :(error-)output :interactive on ABCL

Prior to this change, :output :interactive was identical to :output nil

See merge request !46
parents cef10750 35923035
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -394,7 +394,7 @@ argument to pass to the internal RUN-PROGRAM"
      ((eql :interactive)
       #+allegro nil
       #+clisp :terminal
       #+(or clozure cmucl ecl mkcl sbcl scl) t)
       #+(or abcl clozure cmucl ecl mkcl sbcl scl) t)
      #+(or abcl allegro clozure cmucl ecl lispworks mkcl sbcl scl)
      ((eql :output)
       (if (eq role :error-output)