From f5bc25777a3964bd8f3b40e10c2f4a8c0a6407a8 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 11 Feb 1991 16:19:08 +0000 Subject: [PATCH] Removed some #-new-compiler conditionals in eval-when compile's, since we really need them to bootstrap, even under the new compiler. --- compiler/macros.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/macros.lisp b/compiler/macros.lisp index d5517d47f..5e4102b56 100644 --- a/compiler/macros.lisp +++ b/compiler/macros.lisp @@ -50,7 +50,7 @@ (proclaim '(special *lexical-environment*)) -(eval-when (#-new-compiler compile load eval) +(eval-when (compile load eval) (defconstant policy-parameter-slots '((speed . cookie-speed) (space . cookie-space) (safety . cookie-safety) (cspeed . cookie-cspeed) (brevity . cookie-brevity) @@ -104,7 +104,7 @@ ;;;; Source-hacking defining forms: -(eval-when (#-new-compiler compile load eval) +(eval-when (compile load eval) ;;; Symbolicate -- Interface ;;; @@ -248,7 +248,7 @@ ;;; lambda-list. -(eval-when (#-new-compiler compile load eval) +(eval-when (compile load eval) ;;; Parse-Deftransform -- Internal ;;; @@ -984,7 +984,7 @@ ;;;; The Event statistics/trace utility: -(eval-when (#-new-compiler compile load eval) +(eval-when (compile load eval) (defstruct event-info ;; -- GitLab