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
Jan Moringen
asdf
Commits
46fbe6c9
Commit
46fbe6c9
authored
22 years ago
by
Daniel Barlow
Browse files
Options
Downloads
Patches
Plain Diff
support experimental hyperdoc protocol
parent
e0d02781
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
asdf.lisp
+12
-2
12 additions, 2 deletions
asdf.lisp
with
12 additions
and
2 deletions
asdf.lisp
+
12
−
2
View file @
46fbe6c9
;;; This is asdf: Another System Definition Facility. $Revision: 1.6
3
$
;;; This is asdf: Another System Definition Facility. $Revision: 1.6
4
$
;;;
;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>. But note first that the canonical
;;; <cclan-list@lists.sf.net>. But note first that the canonical
...
@@ -40,6 +40,7 @@
...
@@ -40,6 +40,7 @@
(
defpackage
#:asdf
(
defpackage
#:asdf
(
:export
#:defsystem
#:oos
#:operate
#:find-system
#:run-shell-command
(
:export
#:defsystem
#:oos
#:operate
#:find-system
#:run-shell-command
#:system-definition-pathname
#:find-component
; miscellaneous
#:system-definition-pathname
#:find-component
; miscellaneous
#:hyperdocumentation
#:hyperdoc
#:compile-op
#:load-op
#:load-source-op
#:test-system-version
#:compile-op
#:load-op
#:load-source-op
#:test-system-version
#:operation
; operations
#:operation
; operations
...
@@ -87,7 +88,7 @@
...
@@ -87,7 +88,7 @@
(
in-package
#:asdf
)
(
in-package
#:asdf
)
(
defvar
*asdf-revision*
(
let*
((
v
"$Revision: 1.6
3
$"
)
(
defvar
*asdf-revision*
(
let*
((
v
"$Revision: 1.6
4
$"
)
(
colon
(
position
#\:
v
))
(
colon
(
position
#\:
v
))
(
dot
(
position
#\.
v
)))
(
dot
(
position
#\.
v
)))
(
and
v
colon
dot
(
and
v
colon
dot
...
@@ -995,6 +996,15 @@ output to *trace-output*. Returns the shell's exit code."
...
@@ -995,6 +996,15 @@ output to *trace-output*. Returns the shell's exit code."
(
error
"RUN-SHELL-PROGRAM not implemented for this Lisp"
)
(
error
"RUN-SHELL-PROGRAM not implemented for this Lisp"
)
))
))
(
defgeneric
hyperdocumentation
(
package
name
doc-type
))
(
defmethod
hyperdocumentation
((
package
symbol
)
name
doc-type
)
(
hyperdocumentation
(
find-package
package
)
name
doc-type
))
(
defun
hyperdoc
(
name
doc-type
)
(
hyperdocumentation
(
symbol-package
name
)
name
doc-type
))
(
pushnew
:asdf
*features*
)
(
pushnew
:asdf
*features*
)
#+
sbcl
#+
sbcl
...
...
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