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
74fafced
Commit
74fafced
authored
9 years ago
by
Robert Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Revised docstrings.
parent
c7632900
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
uiop/backward-driver.lisp
+15
-8
15 additions, 8 deletions
uiop/backward-driver.lisp
with
15 additions
and
8 deletions
uiop/backward-driver.lisp
+
15
−
8
View file @
74fafced
...
@@ -43,22 +43,29 @@
...
@@ -43,22 +43,29 @@
;; Backward compatibility for ASDF 2.27 to 3.1.4
;; Backward compatibility for ASDF 2.27 to 3.1.4
(
defun
user-configuration-directories
()
(
defun
user-configuration-directories
()
"Determine user configuration directories.
"Return the current user's list of user configuration directories
DEPRECATED. Use uiop:config-pathnames instead."
for configuring common-lisp.
DEPRECATED. Use uiop:config-pathnames instead."
(
config-pathnames
"common-lisp"
))
(
config-pathnames
"common-lisp"
))
(
defun
system-configuration-directories
()
(
defun
system-configuration-directories
()
"
D
et
ermine
system
user
configuration directories.
"
R
et
urn the list of
system configuration directories
for common-lisp
.
DEPRECATED. Use uiop:config-system-pathnames instead."
DEPRECATED. Use uiop:config-system-pathnames instead."
(
config-system-pathnames
"common-lisp"
))
(
config-system-pathnames
"common-lisp"
))
(
defun
in-first-directory
(
dirs
x
&key
(
direction
:input
))
(
defun
in-first-directory
(
dirs
x
&key
(
direction
:input
))
"Find first file in the list of configuration DIRS with subpathname X that exists (for direction :input or :probe)
"Finds the first appropriate file named X in the list of DIRS for I/O
or just the first one (for direction :output or :io). DEPRECATED."
in DIRECTION \(which may be :INPUT, :OUTPUT, :IO, or :PROBE).
If direction is :INPUT or :PROBE, will return the first extant file named
X in one of the DIRS.
If direction is :OUTPUT or :IO, will simply return the file named X in the
first element of DIRS that exists. DEPRECATED."
(
find-preferred-file
(
find-preferred-file
(
mapcar
#'
(
lambda
(
dir
)
(
subpathname
(
ensure-directory-pathname
dir
)
x
))
dirs
)
(
mapcar
#'
(
lambda
(
dir
)
(
subpathname
(
ensure-directory-pathname
dir
)
x
))
dirs
)
:direction
direction
))
:direction
direction
))
(
defun
in-user-configuration-directory
(
x
&key
(
direction
:input
))
(
defun
in-user-configuration-directory
(
x
&key
(
direction
:input
))
"return pathname under user configuration directory, subpathname X. DEPRECATED."
"Return the file named X in the user configuration directory for common-lisp.
DEPRECATED."
(
find-config-pathname
"common-lisp"
x
direction
))
(
find-config-pathname
"common-lisp"
x
direction
))
(
defun
in-system-configuration-directory
(
x
&key
(
direction
:input
))
(
defun
in-system-configuration-directory
(
x
&key
(
direction
:input
))
"return pathname under system configuration directory, subpathname X. DEPRECATED."
"Return the pathname for the file named X under the system configuration directory
for common-lisp. DEPRECATED."
(
find-preferred-file
(
config-system-pathnames
"common-lisp"
x
)
:direction
direction
)))
(
find-preferred-file
(
config-system-pathnames
"common-lisp"
x
)
:direction
direction
)))
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