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
Martin Simmons
asdf
Commits
67a06091
Commit
67a06091
authored
4 years ago
by
Martin Simmons
Browse files
Options
Downloads
Patches
Plain Diff
Set the correct slot name error-output-stream, not error-stream.
parent
4c3fcb6f
Branches
abcl-1.9.2
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uiop/launch-program.lisp
+3
-3
3 additions, 3 deletions
uiop/launch-program.lisp
with
3 additions
and
3 deletions
uiop/launch-program.lisp
+
3
−
3
View file @
67a06091
...
@@ -621,7 +621,7 @@ LAUNCH-PROGRAM returns a PROCESS-INFO object."
...
@@ -621,7 +621,7 @@ LAUNCH-PROGRAM returns a PROCESS-INFO object."
(
prop
'process
pid-or-nil
)
(
prop
'process
pid-or-nil
)
(
when
(
eq
input
:stream
)
(
prop
'input-stream
in-or-io
))
(
when
(
eq
input
:stream
)
(
prop
'input-stream
in-or-io
))
(
when
(
eq
output
:stream
)
(
prop
'output-stream
out-or-err
))
(
when
(
eq
output
:stream
)
(
prop
'output-stream
out-or-err
))
(
when
(
eq
error-output
:stream
)
(
prop
'error-stream
err-or-pid
)))
(
when
(
eq
error-output
:stream
)
(
prop
'error-
output-
stream
err-or-pid
)))
(
t
(
t
(
prop
'process
err-or-pid
)
(
prop
'process
err-or-pid
)
(
ecase
(
+
(
if
(
eq
input
:stream
)
1
0
)
(
if
(
eq
output
:stream
)
2
0
))
(
ecase
(
+
(
if
(
eq
input
:stream
)
1
0
)
(
if
(
eq
output
:stream
)
2
0
))
...
@@ -630,7 +630,7 @@ LAUNCH-PROGRAM returns a PROCESS-INFO object."
...
@@ -630,7 +630,7 @@ LAUNCH-PROGRAM returns a PROCESS-INFO object."
(
2
(
prop
'output-stream
in-or-io
))
(
2
(
prop
'output-stream
in-or-io
))
(
3
(
prop
'bidir-stream
in-or-io
)))
(
3
(
prop
'bidir-stream
in-or-io
)))
(
when
(
eq
error-output
:stream
)
(
when
(
eq
error-output
:stream
)
(
prop
'error-stream
out-or-err
))))
(
prop
'error-
output-
stream
out-or-err
))))
#+
(
or
abcl
clozure
cmucl
sbcl
scl
)
#+
(
or
abcl
clozure
cmucl
sbcl
scl
)
(
progn
(
progn
(
prop
'process
process
)
(
prop
'process
process
)
...
@@ -674,7 +674,7 @@ LAUNCH-PROGRAM returns a PROCESS-INFO object."
...
@@ -674,7 +674,7 @@ LAUNCH-PROGRAM returns a PROCESS-INFO object."
(
prop
(
ecase
mode
(
1
'input-stream
)
(
2
'output-stream
)
(
3
'bidir-stream
))
(
prop
(
ecase
mode
(
1
'input-stream
)
(
2
'output-stream
)
(
3
'bidir-stream
))
io-or-pid
))
io-or-pid
))
(
when
(
eq
error-output
:stream
)
(
when
(
eq
error-output
:stream
)
(
prop
'error-stream
err-or-nil
)))
(
prop
'error-
output-
stream
err-or-nil
)))
;; Prior to Lispworks 7, this returned (pid); now it
;; Prior to Lispworks 7, this returned (pid); now it
;; returns (io err pid) of which we keep io.
;; returns (io err pid) of which we keep io.
(
t
(
prop
'process
io-or-pid
)))))
(
t
(
prop
'process
io-or-pid
)))))
...
...
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