Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
87aad9f2
Commit
87aad9f2
authored
Apr 04, 1991
by
ram
Browse files
Added :VERBOSE, :PRINT and :PROGRESS keywords to COMPILE-FILE and
COMPILE-FROM-STREAM.
parent
1728c487
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/main.lisp
View file @
87aad9f2
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.3
6
1991/04/04 14:
13:36
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.3
7
1991/04/04 14:
31:45
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -1192,6 +1192,9 @@
(
stream
&key
((
:error-stream
*compiler-error-output*
)
*error-output*
)
((
:trace-stream
*compiler-trace-output*
)
nil
)
((
:verbose
*compile-verbose*
)
*compile-verbose*
)
((
:print
*compile-print*
)
*compile-print*
)
((
:progress
*compile-progress*
)
*compile-progress*
)
((
:block-compile
*block-compile*
)
*block-compile-default*
)
((
:entry-points
*entry-points*
)
nil
)
source-info
)
...
...
@@ -1270,6 +1273,9 @@
(
trace-file
nil
)
(
error-output
t
)
(
load
nil
)
((
:verbose
*compile-verbose*
)
*compile-verbose*
)
((
:print
*compile-print*
)
*compile-print*
)
((
:progress
*compile-progress*
)
*compile-progress*
)
((
:block-compile
*block-compile*
)
*block-compile-default*
)
((
:entry-points
*entry-points*
)
nil
))
"Compiles Source, producing a corresponding .FASL file. Source may be a list
...
...
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