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
Hugo Ishimaru
asdf
Commits
c3049573
Commit
c3049573
authored
15 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Remove stray markdown in docstrings.
parent
c17d8fbb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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 @
c3049573
...
...
@@ -1697,28 +1697,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