Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
cmucl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
25
Issues
25
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cmucl
cmucl
Commits
ae88f40f
Commit
ae88f40f
authored
Oct 12, 2011
by
Raymond Toy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Format docstrings for COMPILE-FILE and COMPILE-FILE-PATHNAME so
DESCRIBE prints them neatly.
parent
e9c497d7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
compiler/main.lisp
compiler/main.lisp
+13
-10
No files found.
compiler/main.lisp
View file @
ae88f40f
...
...
@@ -1810,13 +1810,14 @@
These keywords are supported:
:Output-File
The name of the FASL to output, NIL for none, T for the default. (Note the
difference between the treatment of NIL :Output-File here and in COMPILE-FILE-PATHNAME.)
The returned pathname of the output file may differ from the pathname of the
:Output-File parameter, e.g. when the latter is a designator for a directory.
The name of the FASL to output, NIL for none, T for the default.
(Note the difference between the treatment of NIL :Output-File
here and in COMPILE-FILE-PATHNAME.) The returned pathname of the
output file may differ from the pathname of the :Output-File
parameter, e.g. when the latter is a designator for a directory.
:Load
Load the compiled file; T here requires :Output-File to be
non-NIL, as well.
The default for :Load is NIL.
Load the compiled file; T here requires :Output-File to be
non-NIL, as well.
The default for :Load is NIL.
:Error-File
The name of the error listing file, NIL for none (the default), T for .err.
:Trace-File
...
...
@@ -2135,10 +2136,12 @@
(
byte-compile
*byte-compile-default*
)
(
output-file
t
output-file-supplied-p
)
&allow-other-keys
)
"Return a pathname describing what file COMPILE-FILE would write to given these arguments.
The returned pathname of the output file may differ from the pathname of the :Output-File
parameter, e.g. when the latter is a designator for a directory. The CMUCL caveat: NIL is
accepted for :Output-File there but not here, which is probably not in line with CLHS."
"Return a pathname describing what file COMPILE-FILE would write to
given these arguments. The returned pathname of the output file may
differ from the pathname of the :Output-File parameter, e.g. when
the latter is a designator for a directory. The CMUCL caveat: NIL is
accepted for :Output-File there but not here, which is probably not
in line with CLHS."
(
declare
(
type
(
or
string
pathname
stream
)
input-file
)
(
type
(
or
string
pathname
stream
(
member
t
))
output-file
)
(
values
(
or
null
pathname
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment