Commit 4d5bedca authored by Elias Pipping's avatar Elias Pipping
Browse files

Do not pass unnecessary keywords to SBCL

SBCL's run-program does not currently have an :if-output-does-not-exist
keyword (as of 1.3.8). It seems it never did, either, as suggested by the
following (superfluous?) feature request

  https://bugs.launchpad.net/sbcl/+bug/789817

The same applies to :if-error-does-not-exist
parent d154fa10
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -475,9 +475,7 @@ It returns a process-info plist with possible keys:
                  ,if-error-output-exists)
                #+lispworks `(:save-exit-status t)
                #+mkcl `(:directory ,(native-namestring directory))
                #+sbcl `(:search t
                         :if-output-does-not-exist :create
                         :if-error-does-not-exist :create)
                #+sbcl `(:search t)
                #-sbcl keys
                #+sbcl (if directory keys (remove-plist-key :directory keys))))))
           (process-info-r ()))