From 94524d9121262fc482dadf6391410f56ea139c7f Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 12 May 1993 11:13:25 +0000 Subject: [PATCH] *byte-compiling* => (byte-compiling) --- compiler/float-tran.lisp | 4 ++-- compiler/srctran.lisp | 4 ++-- compiler/typetran.lisp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/float-tran.lisp b/compiler/float-tran.lisp index 953817dd9..55e4748b3 100644 --- a/compiler/float-tran.lisp +++ b/compiler/float-tran.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/float-tran.lisp,v 1.17 1993/05/11 20:56:09 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.18 1993/05/12 11:11:10 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -105,7 +105,7 @@ (defun double-float-low-bits (x) (double-float-low-bits x)) (def-source-transform float-sign (float1 &optional (float2 nil f2-p)) - (cond (*byte-compiling* (values nil t)) + (cond ((byte-compiling) (values nil t)) (f2-p `(* (float-sign ,float1) (abs ,float2))) (t (let ((n-f1 (gensym))) diff --git a/compiler/srctran.lisp b/compiler/srctran.lisp index 455d6c584..7f07f0fa2 100644 --- a/compiler/srctran.lisp +++ b/compiler/srctran.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/srctran.lisp,v 1.41 1993/05/11 13:50:52 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.42 1993/05/12 11:13:25 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -86,7 +86,7 @@ ;;; Translate CxxR into car/cdr combos. (defun source-transform-cxr (form) - (if (or *byte-compiling* (/= (length form) 2)) + (if (or (byte-compiling) (/= (length form) 2)) (values nil t) (let ((name (symbol-name (car form)))) (do ((i (- (length name) 2) (1- i)) diff --git a/compiler/typetran.lisp b/compiler/typetran.lisp index 27cd0b844..bc112770a 100644 --- a/compiler/typetran.lisp +++ b/compiler/typetran.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/typetran.lisp,v 1.19 1993/05/11 13:50:58 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/typetran.lisp,v 1.20 1993/05/12 11:12:22 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -446,7 +446,7 @@ (cadr spec)) `(%typep ,object ,spec)) (t nil)) - (and (not *byte-compiling*) + (and (not (byte-compiling)) (typecase type (numeric-type (source-transform-numeric-typep object type)) -- GitLab