Skip to content
Snippets Groups Projects
Commit 87aad9f2 authored by ram's avatar ram
Browse files

Added :VERBOSE, :PRINT and :PROGRESS keywords to COMPILE-FILE and

COMPILE-FROM-STREAM.
parent 1728c487
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.36 1991/04/04 14:13:36 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.37 1991/04/04 14:31:45 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1192,6 +1192,9 @@ ...@@ -1192,6 +1192,9 @@
(stream &key (stream &key
((:error-stream *compiler-error-output*) *error-output*) ((:error-stream *compiler-error-output*) *error-output*)
((:trace-stream *compiler-trace-output*) nil) ((: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*) ((:block-compile *block-compile*) *block-compile-default*)
((:entry-points *entry-points*) nil) ((:entry-points *entry-points*) nil)
source-info) source-info)
...@@ -1270,6 +1273,9 @@ ...@@ -1270,6 +1273,9 @@
(trace-file nil) (trace-file nil)
(error-output t) (error-output t)
(load nil) (load nil)
((:verbose *compile-verbose*) *compile-verbose*)
((:print *compile-print*) *compile-print*)
((:progress *compile-progress*) *compile-progress*)
((:block-compile *block-compile*) *block-compile-default*) ((:block-compile *block-compile*) *block-compile-default*)
((:entry-points *entry-points*) nil)) ((:entry-points *entry-points*) nil))
"Compiles Source, producing a corresponding .FASL file. Source may be a list "Compiles Source, producing a corresponding .FASL file. Source may be a list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment