From 48a0e07f1867bf389a32b78f40c548eb712bfe4f Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sat, 12 Feb 1994 09:38:52 +0000 Subject: [PATCH] Delete :conservative arg to BYTE-COMPILE, since it is to damn conservative (basically always returns T.) --- compiler/main.lisp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/compiler/main.lisp b/compiler/main.lisp index ee80038e6..b09f95902 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.102 1994/02/11 15:09:39 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.103 1994/02/12 09:38:52 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -351,13 +351,11 @@ ;;; ;;; Return our best guess for whether we will byte compile code currently ;;; being IR1 converted. Only a guess because the decision is made on a -;;; per-component basis. If :CONSERVATIVE is true, return T if there is any -;;; doubt. +;;; per-component basis. ;;; -(defun byte-compiling (&key conservative) +(defun byte-compiling () (if (eq *byte-compiling* :maybe) - (or conservative - (eq *byte-compile* t) + (or (eq *byte-compile* t) (policy nil (zerop speed) (<= debug 1))) (and *byte-compile* *byte-compiling*))) -- GitLab