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

byte-compile always returns nil if :byte-compile nil is specified.

parent a6a5ef54
No related branches found
No related tags found
No related merge requests found
......@@ -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.83 1993/05/12 11:22:48 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.84 1993/05/12 11:26:35 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -355,7 +355,7 @@
(defun byte-compiling ()
(if (eq *byte-compiling* :maybe)
(policy nil (zerop speed) (<= debug 1))
*byte-compiling*))
(and *byte-compile* *byte-compiling*)))
;;; COMPILE-COMPONENT -- internal.
......
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