From: Chris Hanson Date: Fri, 20 Sep 1991 03:58:39 +0000 (+0000) Subject: Eliminate use of INTEGRATE-PRIMITIVE-PROCEDURES declaration. X-Git-Tag: 20090517-FFI~10196 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=c7016c5a2585303edb0812951c9b874b92c5650c;p=mit-scheme.git Eliminate use of INTEGRATE-PRIMITIVE-PROCEDURES declaration. --- diff --git a/v7/src/runtime/prgcop.scm b/v7/src/runtime/prgcop.scm index 3af3fbdc8..825ea70f9 100644 --- a/v7/src/runtime/prgcop.scm +++ b/v7/src/runtime/prgcop.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/prgcop.scm,v 1.2 1990/09/09 03:13:56 cph Rel $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/prgcop.scm,v 1.3 1991/09/20 03:58:39 cph Exp $ -Copyright (c) 1990 Massachusetts Institute of Technology +Copyright (c) 1990-91 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -35,9 +35,10 @@ MIT in each case. |# ;;;; Program copier ;;; package: (runtime program-copier) -(declare (usual-integrations) - (integrate-primitive-procedures - (object-new-type primitive-object-new-type 2))) +(declare (usual-integrations)) + +(define-primitives + (object-new-type primitive-object-new-type 2)) (define (initialize-package!) (set! copier/scode-walker diff --git a/v8/src/runtime/prgcop.scm b/v8/src/runtime/prgcop.scm index 4b0e09a9c..b9444a9ce 100644 --- a/v8/src/runtime/prgcop.scm +++ b/v8/src/runtime/prgcop.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/prgcop.scm,v 1.2 1990/09/09 03:13:56 cph Rel $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/prgcop.scm,v 1.3 1991/09/20 03:58:39 cph Exp $ -Copyright (c) 1990 Massachusetts Institute of Technology +Copyright (c) 1990-91 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -35,9 +35,10 @@ MIT in each case. |# ;;;; Program copier ;;; package: (runtime program-copier) -(declare (usual-integrations) - (integrate-primitive-procedures - (object-new-type primitive-object-new-type 2))) +(declare (usual-integrations)) + +(define-primitives + (object-new-type primitive-object-new-type 2)) (define (initialize-package!) (set! copier/scode-walker