Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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 ()))
......
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