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
Hugo Ishimaru
asdf
Commits
2a2826b4
Commit
2a2826b4
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused variable warnings in GCL and more in %use-run-program.
parent
b93f2512
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
+3
-1
3 additions, 1 deletion
uiop/run-program.lisp
with
3 additions
and
1 deletion
uiop/run-program.lisp
+
3
−
1
View file @
2a2826b4
...
@@ -671,7 +671,9 @@ It returns a process-info plist with possible keys:
...
@@ -671,7 +671,9 @@ It returns a process-info plist with possible keys:
&key
input
output
error-output
ignore-error-status
&allow-other-keys
)
&key
input
output
error-output
ignore-error-status
&allow-other-keys
)
;; helper for RUN-PROGRAM when using %run-program
;; helper for RUN-PROGRAM when using %run-program
#+
(
or
abcl
cormanlisp
gcl
(
and
lispworks
os-windows
)
mcl
mkcl
xcl
)
#+
(
or
abcl
cormanlisp
gcl
(
and
lispworks
os-windows
)
mcl
mkcl
xcl
)
(
error
"Not implemented on this platform"
)
(
progn
command
keys
input
output
error-output
ignore-error-status
;; ignore
(
error
"Not implemented on this platform"
))
(
assert
(
not
(
member
:stream
(
list
input
output
error-output
))))
(
assert
(
not
(
member
:stream
(
list
input
output
error-output
))))
(
let*
((
active-input-p
(
%active-io-specifier-p
input
))
(
let*
((
active-input-p
(
%active-io-specifier-p
input
))
(
active-output-p
(
%active-io-specifier-p
output
))
(
active-output-p
(
%active-io-specifier-p
output
))
...
...
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