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

Removed some #-new-compiler conditionals in eval-when compile's, since

we really need them to bootstrap, even under the new compiler.
parent f8ed8669
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
(proclaim '(special *lexical-environment*)) (proclaim '(special *lexical-environment*))
(eval-when (#-new-compiler compile load eval) (eval-when (compile load eval)
(defconstant policy-parameter-slots (defconstant policy-parameter-slots
'((speed . cookie-speed) (space . cookie-space) (safety . cookie-safety) '((speed . cookie-speed) (space . cookie-space) (safety . cookie-safety)
(cspeed . cookie-cspeed) (brevity . cookie-brevity) (cspeed . cookie-cspeed) (brevity . cookie-brevity)
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
;;;; Source-hacking defining forms: ;;;; Source-hacking defining forms:
(eval-when (#-new-compiler compile load eval) (eval-when (compile load eval)
;;; Symbolicate -- Interface ;;; Symbolicate -- Interface
;;; ;;;
...@@ -248,7 +248,7 @@ ...@@ -248,7 +248,7 @@
;;; lambda-list. ;;; lambda-list.
(eval-when (#-new-compiler compile load eval) (eval-when (compile load eval)
;;; Parse-Deftransform -- Internal ;;; Parse-Deftransform -- Internal
;;; ;;;
...@@ -984,7 +984,7 @@ ...@@ -984,7 +984,7 @@
;;;; The Event statistics/trace utility: ;;;; The Event statistics/trace utility:
(eval-when (#-new-compiler compile load eval) (eval-when (compile load eval)
(defstruct event-info (defstruct event-info
;; ;;
......
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