Add procedure `add-identification!' which provides all the interesting
authorChris Hanson <org/chris-hanson/cph>
Thu, 16 Jun 1988 06:39:36 +0000 (06:39 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 16 Jun 1988 06:39:36 +0000 (06:39 +0000)
functionality needed by most programs now.

v7/src/runtime/system.scm

index 6f0271a71eac6d7f7f40348eff418a2c82ece7c2..75e81d3bba02b3474bfb507f38ba95618e39dc06 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/system.scm,v 14.1 1988/06/13 11:58:10 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/system.scm,v 14.2 1988/06/16 06:39:36 cph Exp $
 
 Copyright (c) 1988 Massachusetts Institute of Technology
 
@@ -37,9 +37,13 @@ MIT in each case. |#
 
 (declare (usual-integrations))
 \f
+(define (add-identification! name version modification)
+  (add-system! (make-system name version modification '())))
+
 (define-structure (system
-                  (constructor make-system
-                               (name version modification files-lists))
+                  (constructor
+                   make-system
+                   (name version modification files-lists))
                   (conc-name system/))
   (name false read-only true)
   (version false read-only true)