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
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Attila Lendvai
asdf
Commits
60b2baf9
Commit
60b2baf9
authored
15 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
1.593: fix the non-upgrade by not trying to find-package into a non-existing package. Sigh.
parent
e5ae9243
Branches
Branches containing commit
Tags
1.593
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
asdf.lisp
+7
-5
7 additions, 5 deletions
asdf.lisp
with
7 additions
and
5 deletions
asdf.lisp
+
7
−
5
View file @
60b2baf9
...
...
@@ -49,10 +49,12 @@
(
cl:in-package
:cl-user
)
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
let
((
sym
(
find-symbol
"*ASDF-REVISION*"
:asdf
)))
(
let
((
asdf
(
find-package
:asdf
)))
(
when
asdf
(
let
((
sym
(
find-symbol
"*ASDF-REVISION*"
asdf
)))
(
when
sym
(
unexport
sym
)
(
unintern
sym
))))
(
unintern
sym
))))
))
(
defpackage
#:asdf
(
:documentation
"Another System Definition Facility"
)
...
...
@@ -173,7 +175,7 @@
;;;;
(
defparameter
*asdf-version*
;; the 1+ hair is to ensure that we don't do an inadvertent find and replace
(
subseq
"VERSION:1.59
2
"
(
1+
(
length
"VERSION"
))))
(
subseq
"VERSION:1.59
3
"
(
1+
(
length
"VERSION"
))))
(
defun
asdf-version
()
*asdf-version*
)
...
...
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