Skip to content
Snippets Groups Projects
Commit cca96c34 authored by wlott's avatar wlott
Browse files

Wrapped an eval-when around the declaim because defstruct is cold-loaded

before proclaim.
parent a6ecd9e2
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.26 1991/11/07 13:20:25 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.27 1991/11/07 17:32:11 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -22,7 +22,10 @@ ...@@ -22,7 +22,10 @@
;;; Always compile safe. This code isn't very careful about protecting itself. ;;; Always compile safe. This code isn't very careful about protecting itself.
;;; ;;;
(declaim (optimize (safety 1))) (eval-when (compile)
(declaim (optimize (safety 1))))
;;;; Structure frobbing primitives. ;;;; Structure frobbing primitives.
......
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