Skip to content
Snippets Groups Projects
Commit 8f7c4b3e authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Merge branch 'master' of http://common-lisp.net/project/asdf/asdf

parents f2d34c3f 0120313f
No related branches found
No related tags found
No related merge requests found
......@@ -63,4 +63,11 @@ test-all: FORCE
sbcl --userinit /dev/null --sysinit /dev/null --load bin/make-helper.lisp \
--eval "(write-test-web-pages)" --eval "(quit)"
manual-html: asdf.texinfo
makeinfo --html asdf.texinfo
manual-info: asdf.texinfo
makeinfo asdf.texinfo
FORCE:
......@@ -4,6 +4,24 @@
@settitle ASDF Manual
@c %**end of header
@c We use @&key, etc to escape & from TeX in lambda lists --
@c so we need to define them for info as well.
@macro &allow-other-keys
&allow-other-keys
@end macro
@macro &optional
&optional
@end macro
@macro &rest
&rest
@end macro
@macro &key
&key
@end macro
@macro &body
&body
@end macro
@c for install-info
@dircategory Software development
@direntry
......@@ -1013,8 +1031,8 @@ and easier than having them all be @code{EQL} methods.
Operations are invoked on systems via @code{operate}.
@anchor{operate}
@deffn {Generic function} @code{operate} @var{operation} @var{system} @code{&rest} @var{initargs}
@deffnx {Generic function} @code{oos} @var{operation} @var{system} @code{&rest} @var{initargs}
@deffn {Generic function} @code{operate} @var{operation} @var{system} @&rest @var{initargs}
@deffnx {Generic function} @code{oos} @var{operation} @var{system} @&rest @var{initargs}
@code{operate} invokes @var{operation} on @var{system}.
@code{oos} is a synonym for @code{operate}.
......@@ -1047,7 +1065,7 @@ They are invoked via the @code{operate} generic function.
(asdf:operate 'asdf:@var{operation-name} :@var{system-name} @{@var{operation-options ...}@})
@end lisp
@deffn Operation @code{compile-op} @code{&key} @code{proclamations}
@deffn Operation @code{compile-op} @&key @code{proclamations}
This operation compiles the specified component.
If proclamations are supplied, they will be proclaimed.
......@@ -1064,7 +1082,7 @@ does not necessarily load all the parts of the system, though;
use @code{load-op} to load a system.
@end deffn
@deffn Operation @code{load-op} @code{&key} @code{proclamations}
@deffn Operation @code{load-op} @&key @code{proclamations}
This operation loads a system.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment