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
asdf
asdf
Commits
946798d8
Commit
946798d8
authored
May 10, 2014
by
Francois-Rene Rideau
Browse files
Tweak a loop so it works on Genera.
parent
8239fb7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
operate.lisp
View file @
946798d8
...
...
@@ -226,8 +226,8 @@ the implementation's REQUIRE rather than by internal ASDF mechanisms."))
(
defun
restart-upgraded-asdf
()
;; If we're in the middle of something, restart it.
(
when
*asdf-cache*
(
let
((
l
(
loop
*
:for
(
x
y
)
:being
:the
hash-keys
:of
*asdf-cache*
:when
(
eq
x
'find-system
)
:collect
y
)))
(
let
((
l
(
loop
:for
k
:being
:the
hash-keys
:of
*asdf-cache*
:when
(
eq
(
first
k
)
'find-system
)
:collect
(
second
k
)
)))
(
clrhash
*asdf-cache*
)
(
dolist
(
s
l
)
(
find-system
s
nil
)))))
(
register-hook-function
'*post-upgrade-restart-hook*
'restart-upgraded-asdf
))
...
...
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