Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
asdf
Commits
a65deb43
Commit
a65deb43
authored
Nov 29, 2016
by
Mark
Browse files
uiop/run-program: fix abcl version identifier for development releases
parent
ec88be65
Changes
1
Hide whitespace changes
Inline
Side-by-side
uiop/run-program.lisp
View file @
a65deb43
...
...
@@ -1012,7 +1012,12 @@ or :error-output."
(
declare
(
ignorable
keys
directory
input
if-input-does-not-exist
output
if-output-exists
error-output
if-error-output-exists
))
#+
(
or
abcl
allegro
clozure
cmucl
ecl
(
and
lispworks
os-unix
)
mkcl
sbcl
scl
)
(
let
(
#+
(
or
abcl
ecl
mkcl
)
(
version
(
parse-version
(
lisp-implementation-version
))))
(
let
(
#+
(
or
abcl
ecl
mkcl
)
(
version
(
parse-version
#-
abcl
(
lisp-implementation-version
)
#+
abcl
(
second
(
split-string
(
implementation-identifier
)
:separator
'
(
#\-
))))))
(
nest
#+
abcl
(
unless
(
lexicographic<
'<
version
'
(
1
4
0
)))
#+
ecl
(
unless
(
lexicographic<=
'<
version
'
(
16
0
0
)))
...
...
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