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
978aa657
Commit
978aa657
authored
15 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
http://common-lisp.net/project/asdf/asdf
parents
99ef6da7
c3049573
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
+4
-4
4 additions, 4 deletions
asdf.lisp
with
4 additions
and
4 deletions
asdf.lisp
+
4
−
4
View file @
978aa657
...
...
@@ -1703,28 +1703,28 @@ created with the same initargs as the original one.
"
))
(
setf
(
documentation
'oos
'function
)
(
format
nil
"Short for _operate on system_ and an alias for the
[operate][]
function. ~&~&~a"
"Short for _operate on system_ and an alias for the
OPERATE
function. ~&~&~a"
operate-docstring
))
(
setf
(
documentation
'operate
'function
)
operate-docstring
))
(
defun
load-system
(
system
&rest
args
&key
force
(
verbose
t
)
version
&allow-other-keys
)
"Shorthand for `(operate 'asdf:load-op system)`. See
[operate][]
for
"Shorthand for `(operate 'asdf:load-op system)`. See
OPERATE
for
details."
(
declare
(
ignore
force
verbose
version
))
(
apply
#'
operate
'load-op
system
args
))
(
defun
compile-system
(
system
&rest
args
&key
force
(
verbose
t
)
version
&allow-other-keys
)
"Shorthand for `(operate 'asdf:compile-op system)`. See
[operate][]
"Shorthand for `(operate 'asdf:compile-op system)`. See
OPERATE
for details."
(
declare
(
ignore
force
verbose
version
))
(
apply
#'
operate
'compile-op
system
args
))
(
defun
test-system
(
system
&rest
args
&key
force
(
verbose
t
)
version
&allow-other-keys
)
"Shorthand for `(operate 'asdf:test-op system)`. See
[operate][]
for
"Shorthand for `(operate 'asdf:test-op system)`. See
OPERATE
for
details."
(
declare
(
ignore
force
verbose
version
))
(
apply
#'
operate
'test-op
system
args
))
...
...
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