Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
ed240ac9
Commit
ed240ac9
authored
Nov 11, 2016
by
Elias Pipping
Browse files
Avoid mkcl:system on MKCL >1.1.9
parent
649b5588
Changes
1
Hide whitespace changes
Inline
Side-by-side
uiop/run-program.lisp
View file @
ed240ac9
...
...
@@ -1017,11 +1017,12 @@ or :error-output."
(
%handle-if-does-not-exist
input
if-input-does-not-exist
)
(
%handle-if-exists
output
if-output-exists
)
(
%handle-if-exists
error-output
if-error-output-exists
)
#+
(
or
abcl
allegro
clozure
cmucl
ecl
(
and
lispworks
os-unix
)
sbcl
scl
)
(
let
(
#+
(
or
abcl
ecl
)
(
version
(
parse-version
(
lisp-implementation-version
))))
#+
(
or
abcl
allegro
clozure
cmucl
ecl
(
and
lispworks
os-unix
)
mkcl
sbcl
scl
)
(
let
(
#+
(
or
abcl
ecl
mkcl
)
(
version
(
parse-version
(
lisp-implementation-version
))))
(
nest
#+
abcl
(
unless
(
lexicographic<
'<
version
'
(
1
4
0
)))
#+
ecl
(
unless
(
lexicographic<=
'<
version
'
(
16
0
0
)))
#+
mkcl
(
unless
(
lexicographic<=
'<
version
'
(
1
1
9
)))
(
return-from
%system
(
wait-process
(
apply
'launch-program
(
%normalize-system-command
command
)
keys
)))))
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment