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
16
Issues
16
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
ed240ac9
Commit
ed240ac9
authored
Nov 11, 2016
by
Elias Pipping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid mkcl:system on MKCL >1.1.9
parent
649b5588
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
uiop/run-program.lisp
uiop/run-program.lisp
+3
-2
No files found.
uiop/run-program.lisp
View file @
ed240ac9
...
@@ -1017,11 +1017,12 @@ or :error-output."
...
@@ -1017,11 +1017,12 @@ or :error-output."
(
%handle-if-does-not-exist
input
if-input-does-not-exist
)
(
%handle-if-does-not-exist
input
if-input-does-not-exist
)
(
%handle-if-exists
output
if-output-exists
)
(
%handle-if-exists
output
if-output-exists
)
(
%handle-if-exists
error-output
if-error-output-exists
)
(
%handle-if-exists
error-output
if-error-output-exists
)
#+
(
or
abcl
allegro
clozure
cmucl
ecl
(
and
lispworks
os-unix
)
sbcl
scl
)
#+
(
or
abcl
allegro
clozure
cmucl
ecl
(
and
lispworks
os-unix
)
mkcl
sbcl
scl
)
(
let
(
#+
(
or
abcl
ecl
)
(
version
(
parse-version
(
lisp-implementation-version
))))
(
let
(
#+
(
or
abcl
ecl
mkcl
)
(
version
(
parse-version
(
lisp-implementation-version
))))
(
nest
(
nest
#+
abcl
(
unless
(
lexicographic<
'<
version
'
(
1
4
0
)))
#+
abcl
(
unless
(
lexicographic<
'<
version
'
(
1
4
0
)))
#+
ecl
(
unless
(
lexicographic<=
'<
version
'
(
16
0
0
)))
#+
ecl
(
unless
(
lexicographic<=
'<
version
'
(
16
0
0
)))
#+
mkcl
(
unless
(
lexicographic<=
'<
version
'
(
1
1
9
)))
(
return-from
%system
(
return-from
%system
(
wait-process
(
wait-process
(
apply
'launch-program
(
%normalize-system-command
command
)
keys
)))))
(
apply
'launch-program
(
%normalize-system-command
command
)
keys
)))))
...
...
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