Eliminate use of INTEGRATE-PRIMITIVE-PROCEDURES declaration.
authorChris Hanson <org/chris-hanson/cph>
Fri, 20 Sep 1991 03:58:39 +0000 (03:58 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 20 Sep 1991 03:58:39 +0000 (03:58 +0000)
v7/src/runtime/prgcop.scm
v8/src/runtime/prgcop.scm

index 3af3fbdc8e54b9663afbadc2749600ca456ec0d5..825ea70f91cd3fc12d0c8accc37df2c1a7739c9f 100644 (file)
@@ -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
index 4b0e09a9cd2b27960c90254342ad9a9b587da224..b9444a9ce530307b619418c4bbc3c68ebe3e4c7b 100644 (file)
@@ -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