From 77c06cbab4eafc78271b18446a399fd447d37250 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 22 Feb 1991 21:16:31 +0000 Subject: [PATCH] Initialize the condition system a little later. It depends on the lambda abstraction being initialized. --- v7/src/runtime/make.scm | 7 ++++--- v8/src/runtime/make.scm | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/v7/src/runtime/make.scm b/v7/src/runtime/make.scm index 2d1387644..610d79171 100644 --- a/v7/src/runtime/make.scm +++ b/v7/src/runtime/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/make.scm,v 14.27 1991/02/19 22:45:14 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/make.scm,v 14.28 1991/02/22 21:16:31 cph Exp $ Copyright (c) 1988-91 Massachusetts Institute of Technology @@ -304,8 +304,6 @@ MIT in each case. |# (RUNTIME HASH) (RUNTIME RANDOM-NUMBER) (RUNTIME RECORD) - (RUNTIME ERROR-HANDLER) - (RUNTIME MICROCODE-ERRORS) ;; Microcode data structures (RUNTIME HISTORY) (RUNTIME LAMBDA-ABSTRACTION) @@ -314,6 +312,9 @@ MIT in each case. |# (RUNTIME SCODE-WALKER) (RUNTIME CONTINUATION-PARSER) (RUNTIME PROGRAM-COPIER) + ;; Condition System + (RUNTIME ERROR-HANDLER) + (RUNTIME MICROCODE-ERRORS) ;; I/O (RUNTIME CONSOLE-INPUT) (RUNTIME CONSOLE-OUTPUT) diff --git a/v8/src/runtime/make.scm b/v8/src/runtime/make.scm index de220284c..f5db2b68e 100644 --- a/v8/src/runtime/make.scm +++ b/v8/src/runtime/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/make.scm,v 14.27 1991/02/19 22:45:14 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/make.scm,v 14.28 1991/02/22 21:16:31 cph Exp $ Copyright (c) 1988-91 Massachusetts Institute of Technology @@ -304,8 +304,6 @@ MIT in each case. |# (RUNTIME HASH) (RUNTIME RANDOM-NUMBER) (RUNTIME RECORD) - (RUNTIME ERROR-HANDLER) - (RUNTIME MICROCODE-ERRORS) ;; Microcode data structures (RUNTIME HISTORY) (RUNTIME LAMBDA-ABSTRACTION) @@ -314,6 +312,9 @@ MIT in each case. |# (RUNTIME SCODE-WALKER) (RUNTIME CONTINUATION-PARSER) (RUNTIME PROGRAM-COPIER) + ;; Condition System + (RUNTIME ERROR-HANDLER) + (RUNTIME MICROCODE-ERRORS) ;; I/O (RUNTIME CONSOLE-INPUT) (RUNTIME CONSOLE-OUTPUT) -- 2.25.1