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
Pascal J. Bourguignon
asdf
Commits
d1793fe3
Commit
d1793fe3
authored
14 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Fixed documentation for :here directive in configuration DSL.
parent
f96efa24
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
doc/asdf.texinfo
+10
-8
10 additions, 8 deletions
doc/asdf.texinfo
with
10 additions
and
8 deletions
doc/asdf.texinfo
+
10
−
8
View file @
d1793fe3
...
@@ -1790,7 +1790,10 @@ but will take precedence over the new mechanism if you do use it.
...
@@ -1790,7 +1790,10 @@ but will take precedence over the new mechanism if you do use it.
@section Configuration DSL
@section Configuration DSL
Here is the grammar of the s-expression (SEXP) DSL for source-registry configuration:
Here is the grammar of the s-expression (SEXP) DSL for source-registry
configuration:
@c FIXME: This is too wide for happy compilation into pdf.
@example
@example
;; A configuration is a single SEXP starting with keyword :source-registry
;; A configuration is a single SEXP starting with keyword :source-registry
...
@@ -1811,10 +1814,6 @@ DIRECTIVE :=
...
@@ -1811,10 +1814,6 @@ DIRECTIVE :=
;; add a directory hierarchy, recursing but excluding specified patterns
;; add a directory hierarchy, recursing but excluding specified patterns
(:tree DIRECTORY-PATHNAME-DESIGNATOR) |
(:tree DIRECTORY-PATHNAME-DESIGNATOR) |
;; add a directory relative to the location of the configuration
;; file being read.
(:here RELATIVE-COMPONENT-DESIGNATOR?) |
;; override the defaults for exclusion patterns
;; override the defaults for exclusion patterns
(:exclude PATTERN ...) |
(:exclude PATTERN ...) |
;; augment the defaults for exclusion patterns
;; augment the defaults for exclusion patterns
...
@@ -1841,7 +1840,9 @@ ABSOLUTE-COMPONENT-DESIGNATOR :=
...
@@ -1841,7 +1840,9 @@ ABSOLUTE-COMPONENT-DESIGNATOR :=
PATHNAME | ;; pathname (better be an absolute path, or bust)
PATHNAME | ;; pathname (better be an absolute path, or bust)
:HOME | ;; designates the user-homedir-pathname ~/
:HOME | ;; designates the user-homedir-pathname ~/
:USER-CACHE | ;; designates the default location for the user cache
:USER-CACHE | ;; designates the default location for the user cache
:SYSTEM-CACHE ;; designates the default location for the system cache
:SYSTEM-CACHE | ;; designates the default location for the system cache
:HERE ;; designates the location of the configuration file
;; (or *default-pathname-defaults*, if invoked interactively)
RELATIVE-COMPONENT-DESIGNATOR :=
RELATIVE-COMPONENT-DESIGNATOR :=
STRING | ;; namestring (directory assumed where applicable)
STRING | ;; namestring (directory assumed where applicable)
...
@@ -1926,8 +1927,9 @@ In this case, X can put into @file{dir/} a file @file{asdf.conf} that
...
@@ -1926,8 +1927,9 @@ In this case, X can put into @file{dir/} a file @file{asdf.conf} that
contains the following:
contains the following:
@example
@example
(:source-registry
(:source-registry
(:here "src/lisp/")
(:tree (:here "src/lisp/"))
(:here "extlib/lisp"))
(:tree (:here "extlib/lisp"))
(:directory (:here "outlier/")))
@end example
@end example
@section Shell-friendly syntax for configuration
@section Shell-friendly syntax for configuration
...
...
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