From 379c662e1d944903619c3055bce20682c56911e3 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 18 Feb 1992 02:03:49 +0000
Subject: [PATCH] Added a call to PROCLAIM-INIT, so that the *DEFAULT-COOKIE*
 and *DEFAULT- INTERFACE-COOKIE* start up with known values instead of
 whatever the last cold loaded file left them as.

---
 code/lispinit.lisp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/code/lispinit.lisp b/code/lispinit.lisp
index 008f04fe1..3a546654e 100644
--- a/code/lispinit.lisp
+++ b/code/lispinit.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.28 1992/02/14 23:45:11 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.29 1992/02/18 02:03:49 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -545,6 +545,9 @@
   (setf (alien:extern-alien "internal_errors_enabled" alien:boolean) t)
   (set-floating-point-modes :traps '(:overflow :underflow :invalid
 					       :divide-by-zero))
+  ;; This is necessary because some of the initial top level forms might
+  ;; have changed the compliation policy in strange ways.
+  (print-and-call c::proclaim-init)
 
   (%primitive print "Done initializing.")
 
-- 
GitLab