0.7.9.6:
[sbcl.git] / src / compiler / lexenv.lisp
index 5a94a63..033a4fa 100644 (file)
 #!-sb-fluid (declaim (inline internal-make-lexenv)) ; only called in one place
 (def!struct (lexenv
             (:constructor make-null-lexenv ())
+            (:constructor make-null-interactive-lexenv
+                          (&aux (policy (list '(safety . 3)
+                                              '(compilation-speed . 2)
+                                              '(speed . 1)
+                                              '(space . 1)
+                                              '(debug . 1)
+                                              '(inhibit-warnings . 1)))))
             (:constructor internal-make-lexenv
                           (funs vars blocks tags type-restrictions
                                 lambda cleanup policy)))