Add usual-integrations declaration to constructor/loader definitions
authorChris Hanson <org/chris-hanson/cph>
Sun, 7 Jun 1998 08:27:38 +0000 (08:27 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 7 Jun 1998 08:27:38 +0000 (08:27 +0000)
to eliminate compiler warning.

v7/src/cref/toplev.scm

index 52ebcce952695c5cedad05cd8b7c40fd74a34422..5e8e50b8019def23c72157804e4cdb0be9f13e2b 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: toplev.scm,v 1.10 1996/04/23 21:16:46 cph Exp $
+$Id: toplev.scm,v 1.11 1998/06/07 08:27:38 cph Exp $
 
-Copyright (c) 1988-96 Massachusetts Institute of Technology
+Copyright (c) 1988-98 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -84,6 +84,8 @@ MIT in each case. |#
              (write-string ";;; -*-Scheme-*-")
              (newline)
              (write-string ";;; program to make package structure")
+             (newline)
+             (write '(DECLARE (USUAL-INTEGRATIONS)))
              (for-each (lambda (expression)
                          (pp expression (current-output-port) true))
                constructor)))))))
@@ -99,6 +101,8 @@ MIT in each case. |#
              (write-string ";;; -*-Scheme-*-")
              (newline)
              (write-string ";;; program to load package contents")
+             (newline)
+             (write '(DECLARE (USUAL-INTEGRATIONS)))
              (for-each (lambda (expression)
                          (pp expression (current-output-port) true))
                loader)))))))