From 87aad9f2080e546750584914574818dd8dcf4adc Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Thu, 4 Apr 1991 14:31:45 +0000
Subject: [PATCH] Added :VERBOSE, :PRINT and :PROGRESS keywords to COMPILE-FILE
 and COMPILE-FROM-STREAM.

---
 compiler/main.lisp | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/compiler/main.lisp b/compiler/main.lisp
index 125dc7571..aeefa16ef 100644
--- a/compiler/main.lisp
+++ b/compiler/main.lisp
@@ -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.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 @@
        (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
-- 
GitLab