From 6ce1b6aa585ca21c4458801ccc0574c50328fc41 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 6 May 1991 13:31:21 +0000 Subject: [PATCH] Moved load of room to after compiler, and made it conditional on the no-compiler features, since it depends on the VM object format database. --- tools/worldload.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/worldload.lisp b/tools/worldload.lisp index 0b5124e7c..2c24f64de 100644 --- a/tools/worldload.lisp +++ b/tools/worldload.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldload.lisp,v 1.23 1991/05/04 15:15:34 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldload.lisp,v 1.24 1991/05/06 13:31:21 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -75,7 +75,6 @@ (load "code:rand") (load "code:trace") (load "code:profile") -(load "code:room") (load "code:weak") (load "code:sysmacs") (load "code:pprint") @@ -90,6 +89,10 @@ ;;; Load the compiler. #-no-compiler (load "c:loadcom.lisp") +#-no-compiler +;;; Depends on backend definition for object format info... +(load "code:room") + ;;; Load the pretty printer after the compiler, 'cause it compiles stuff ;;; at load time. -- GitLab