From: Chris Hanson Date: Sat, 16 Jul 1988 18:54:56 +0000 (+0000) Subject: When unparsing `manifest-closure' objects, use `compiled-procedure' as X-Git-Tag: 20090517-FFI~12652 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=cd3e8fae3ae85cb4be88351319bc08a3b01c144f;p=mit-scheme.git When unparsing `manifest-closure' objects, use `compiled-procedure' as the type name. --- diff --git a/v7/src/runtime/unpars.scm b/v7/src/runtime/unpars.scm index 5f57347fa..353e3743b 100644 --- a/v7/src/runtime/unpars.scm +++ b/v7/src/runtime/unpars.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unpars.scm,v 14.4 1988/07/15 22:31:04 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unpars.scm,v 14.5 1988/07/16 18:54:39 cph Exp $ Copyright (c) 1988 Massachusetts Institute of Technology @@ -450,9 +450,7 @@ MIT in each case. |# ;; middle of the other stuff. (let ((unparse-it (lambda (thunk) - (*unparse-with-brackets (compiled-procedure-type entry) - entry - thunk)))) + (*unparse-with-brackets 'COMPILED-PROCEDURE entry thunk)))) (compiled-entry->name entry (lambda (string) (unparse-it @@ -470,12 +468,6 @@ MIT in each case. |# (lambda () (*unparse-datum entry))))))))) -(define (compiled-procedure-type entry) - (if (compiled-code-block/manifest-closure? - (compiled-code-address->block entry)) - 'MANIFEST-CLOSURE - 'COMPILED-PROCEDURE)) - (define (unparse-compiled-entry entry) (let ((unparse-it (lambda (thunk) diff --git a/v7/src/runtime/version.scm b/v7/src/runtime/version.scm index 12401984b..d7268b27e 100644 --- a/v7/src/runtime/version.scm +++ b/v7/src/runtime/version.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.13 1988/07/15 22:33:49 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.14 1988/07/16 18:54:56 cph Exp $ Copyright (c) 1988 Massachusetts Institute of Technology @@ -45,7 +45,7 @@ MIT in each case. |# '())) (add-system! microcode-system) (add-event-receiver! event:after-restore snarf-microcode-version!) - (add-identification! "Runtime" 14 13)) + (add-identification! "Runtime" 14 14)) (define microcode-system)