Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
30f52c94
Commit
30f52c94
authored
Nov 15, 2016
by
Elias Pipping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix "unused" warning on Allegro CL
parent
be7d54df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
uiop/run-program.lisp
uiop/run-program.lisp
+8
-7
No files found.
uiop/run-program.lisp
View file @
30f52c94
...
...
@@ -400,13 +400,14 @@ argument to pass to the internal RUN-PROGRAM"
"On this lisp implementation, cannot interpret ~a value of ~a"
specifier
role
))
((
eql
:output
)
(
if
(
eq
role
:error-output
)
(
or
#+
(
or
abcl
allegro
clozure
cmucl
ecl
lispworks
mkcl
sbcl
scl
)
:output
(
not-implemented-error
:error-output-redirect
"Can't send ~a to ~a on this lisp implementation."
role
specifier
))
(
parameter-error
"~S IO specifier invalid for ~S"
specifier
role
)))
(
cond
((
eq
role
:error-output
)
#+
(
or
abcl
allegro
clozure
cmucl
ecl
lispworks
mkcl
sbcl
scl
)
:output
#-
(
or
abcl
allegro
clozure
cmucl
ecl
lispworks
mkcl
sbcl
scl
)
(
not-implemented-error
:error-output-redirect
"Can't send ~a to ~a on this lisp implementation."
role
specifier
))
(
t
(
parameter-error
"~S IO specifier invalid for ~S"
specifier
role
))))
(
otherwise
(
parameter-error
"Incorrect I/O specifier ~S for ~S"
specifier
role
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment