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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hugo Ishimaru
asdf
Commits
01bba0a8
Commit
01bba0a8
authored
14 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
2.010.3: allow component classes to be named by keywords. (Thanks to Stelian Ionescu)
parent
b6cce147
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GNUmakefile
+1
-1
1 addition, 1 deletion
GNUmakefile
asdf.lisp
+3
-3
3 additions, 3 deletions
asdf.lisp
with
4 additions
and
4 deletions
GNUmakefile
+
1
−
1
View file @
01bba0a8
...
@@ -44,7 +44,7 @@ website:
...
@@ -44,7 +44,7 @@ website:
make
-C
doc website
make
-C
doc website
clean_dirs
=
$(
sourceDirectory
)
clean_dirs
=
$(
sourceDirectory
)
clean_extensions
=
fasl dfsl cfsl fasl fas lib dx32fsl lx64fsl lx32fsl o bak
clean_extensions
=
fasl dfsl cfsl fasl fas lib dx32fsl lx64fsl lx32fsl o bak
x86f
clean
:
FORCE
clean
:
FORCE
@
for
dir
in
$(
clean_dirs
);
do
\
@
for
dir
in
$(
clean_dirs
);
do
\
...
...
This diff is collapsed.
Click to expand it.
asdf.lisp
+
3
−
3
View file @
01bba0a8
...
@@ -73,7 +73,7 @@
...
@@ -73,7 +73,7 @@
(
eval-when
(
:load-toplevel
:compile-toplevel
:execute
)
(
eval-when
(
:load-toplevel
:compile-toplevel
:execute
)
(
defvar
*asdf-version*
nil
)
(
defvar
*asdf-version*
nil
)
(
defvar
*upgraded-p*
nil
)
(
defvar
*upgraded-p*
nil
)
(
let*
((
asdf-version
"2.010.
2
"
)
;; bump this version when you modify this file.
(
let*
((
asdf-version
"2.010.
3
"
)
;; bump this version when you modify this file.
(
existing-asdf
(
fboundp
'find-system
))
(
existing-asdf
(
fboundp
'find-system
))
(
existing-version
*asdf-version*
)
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
(
already-there
(
equal
asdf-version
existing-version
)))
...
@@ -2201,7 +2201,7 @@ details."
...
@@ -2201,7 +2201,7 @@ details."
(
defun*
class-for-type
(
parent
type
)
(
defun*
class-for-type
(
parent
type
)
(
or
(
loop
:for
symbol
:in
(
list
(
or
(
loop
:for
symbol
:in
(
list
(
unless
(
keywordp
type
)
type
)
type
(
find-symbol
(
symbol-name
type
)
*package*
)
(
find-symbol
(
symbol-name
type
)
*package*
)
(
find-symbol
(
symbol-name
type
)
:asdf
))
(
find-symbol
(
symbol-name
type
)
:asdf
))
:for
class
=
(
and
symbol
(
find-class
symbol
nil
))
:for
class
=
(
and
symbol
(
find-class
symbol
nil
))
...
@@ -3548,7 +3548,7 @@ with a different configuration, so the configuration would be re-read then."
...
@@ -3548,7 +3548,7 @@ with a different configuration, so the configuration would be re-read then."
(
clear-output-translations
))
(
clear-output-translations
))
;;;; -----------------------------------------------------------------
;;;; -----------------------------------------------------------------
;;;; Hook into REQUIRE for ABCL, ClozureCL, CMUCL, ECL and SBCL
;;;; Hook into REQUIRE for ABCL,
CLISP,
ClozureCL, CMUCL, ECL and SBCL
;;;;
;;;;
(
defun*
module-provide-asdf
(
name
)
(
defun*
module-provide-asdf
(
name
)
(
handler-bind
(
handler-bind
...
...
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