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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Tarn Burton
asdf
Commits
c016f287
Commit
c016f287
authored
15 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Updated the defsystem grammar to try to bring manual in line with 1.630.
parent
9f5b2d5d
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.texinfo
+35
-2
35 additions, 2 deletions
asdf.texinfo
with
35 additions
and
2 deletions
asdf.texinfo
+
35
−
2
View file @
c016f287
...
@@ -451,7 +451,7 @@ compiled.
...
@@ -451,7 +451,7 @@ compiled.
system-definition := ( defsystem system-designator
{
option
}
* )
system-definition := ( defsystem system-designator
{
option
}
* )
option := :components component-list
option := :components component-list
| :pathname pathname
| :pathname pathname
-specifier
| :default-component-class
| :default-component-class
| :perform method-form
| :perform method-form
| :explain method-form
| :explain method-form
...
@@ -463,7 +463,7 @@ option := :components component-list
...
@@ -463,7 +463,7 @@ option := :components component-list
component-list := (
{
component-def
}
* )
component-list := (
{
component-def
}
* )
component-def := ( component-type name
{
option
}
* )
component-def := ( component-type
simple-component-
name
{
option
}
* )
component-type := :module | :file | :system | other-component-type
component-type := :module | :file | :system | other-component-type
...
@@ -480,10 +480,43 @@ required-op := operation-name | feature
...
@@ -480,10 +480,43 @@ required-op := operation-name | feature
simple-component-name := string
simple-component-name := string
| symbol
| symbol
pathname-specifier := pathname | string | symbol
method-form := (operation-name qual lambda-list
&
rest body)
method-form := (operation-name qual lambda-list
&
rest body)
qual := method qualifier
qual := method qualifier
@end verbatim
@end verbatim
@subsection Component names
Component names (@code
{
simple-component-name
}
) may be either strings or
symbols. If they are symbols, they will be translated into strings, and
downcased in the process. Slashes (@code
{
/
}
) in strings will be treated
as directory separators, so that @code
{
"foo/bar"
}
will refer to a file
named ``bar'' in the subdirectory (relative to the parent directory)
``foo''.
@subsection Pathname specifiers
A pathname specifier may be a pathname or a string. Pathnames are
typically specified using reader macros such as @code
{
#p
}
or
@code
{
#.(make-pathname ...)
}
.
A string will be interpreted as a Unix-style pathname, where @code
{
/
}
characters will be interpreted as directory separators.
A symbol will be translated to a string and downcased, then interpreted
as per strings.
@subsection Warning about logical pathnames
ASDF does not have any way to reliably detect or interpret logical
pathnames in pathname specifier strings, or in component names. If you wish to
specify pathnames as strings, you @emph
{
must
}
use the Unix-style syntax.
Note that logical pathnames are available to you through the use of
pathnames proper.
@subsection Serial dependencies
@subsection Serial dependencies
If the @code
{
:serial t
}
option is specified for a module, asdf will add
If the @code
{
:serial t
}
option is specified for a module, asdf will add
...
...
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