Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Didier Verna
asdf
Commits
5e26bc2c
Commit
5e26bc2c
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
SBCL doesn't try hard enough on Windows.
parent
6043552a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uiop/run-program.lisp
+2
-2
2 additions, 2 deletions
uiop/run-program.lisp
with
2 additions
and
2 deletions
uiop/run-program.lisp
+
2
−
2
View file @
5e26bc2c
...
@@ -370,7 +370,7 @@ for the implementation's underlying run-program function"
...
@@ -370,7 +370,7 @@ for the implementation's underlying run-program function"
via SLURP-INPUT-STREAM or VOMIT-OUTPUT-STREAM (return T),
via SLURP-INPUT-STREAM or VOMIT-OUTPUT-STREAM (return T),
or whether it's already taken care of by the implementation's underlying run-program."
or whether it's already taken care of by the implementation's underlying run-program."
(
not
(
typep
specifier
'
(
or
null
string
pathname
(
member
:interactive
:output
)
(
not
(
typep
specifier
'
(
or
null
string
pathname
(
member
:interactive
:output
)
#+
(
or
cmu
sbcl
scl
)
(
or
stream
(
eql
t
))
#+
(
or
cmu
(
and
sbcl
os-unix
)
scl
)
(
or
stream
(
eql
t
))
#+
lispworks
file-stream
))))
;; not a type!? comm:socket-stream
#+
lispworks
file-stream
))))
;; not a type!? comm:socket-stream
(
defun
%normalize-io-specifier
(
specifier
&optional
role
)
(
defun
%normalize-io-specifier
(
specifier
&optional
role
)
...
@@ -630,7 +630,7 @@ It returns a process-info plist with possible keys:
...
@@ -630,7 +630,7 @@ It returns a process-info plist with possible keys:
(
typecase
activity-spec
(
typecase
activity-spec
((
or
null
string
pathname
(
eql
:interactive
))
((
or
null
string
pathname
(
eql
:interactive
))
(
easy-case
))
(
easy-case
))
#+
(
or
cmu
sbcl
scl
)
;; streams are only easy on implementations that try very hard
#+
(
or
cmu
(
and
sbcl
os-unix
)
scl
)
;; streams are only easy on implementations that try very hard
(
stream
(
stream
(
if
stream-easy-p
(
easy-case
)
(
hard-case
)))
(
if
stream-easy-p
(
easy-case
)
(
hard-case
)))
(
t
(
t
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment