From: Chris Hanson Date: Thu, 30 Jun 1988 22:22:42 +0000 (+0000) Subject: Add procedures to modify the version and modification components of a X-Git-Tag: 20090517-FFI~12687 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=b1221702b88127fc17e0455fbcfa890d5b7ef1be;p=mit-scheme.git Add procedures to modify the version and modification components of a system. --- diff --git a/v7/src/runtime/runtime.pkg b/v7/src/runtime/runtime.pkg index 3e90955df..e07499e2e 100644 --- a/v7/src/runtime/runtime.pkg +++ b/v7/src/runtime/runtime.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.8 1988/06/22 21:34:22 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.9 1988/06/30 22:22:42 cph Exp $ Copyright (c) 1988 Massachusetts Institute of Technology @@ -1512,6 +1512,8 @@ MIT in each case. |# for-each-system! load-system! make-system + set-system/modification! + set-system/version! system/identification-string system/modification system/name diff --git a/v7/src/runtime/system.scm b/v7/src/runtime/system.scm index 75e81d3bb..71edd83da 100644 --- a/v7/src/runtime/system.scm +++ b/v7/src/runtime/system.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$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 $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/system.scm,v 14.3 1988/06/30 22:22:23 cph Exp $ Copyright (c) 1988 Massachusetts Institute of Technology @@ -46,8 +46,8 @@ MIT in each case. |# (name version modification files-lists)) (conc-name system/)) (name false read-only true) - (version false read-only true) - (modification false read-only true) + (version false) + (modification false) (files-lists false read-only true) (files false)) diff --git a/v8/src/runtime/runtime.pkg b/v8/src/runtime/runtime.pkg index 4d8a7b98c..76247b086 100644 --- a/v8/src/runtime/runtime.pkg +++ b/v8/src/runtime/runtime.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.8 1988/06/22 21:34:22 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.9 1988/06/30 22:22:42 cph Exp $ Copyright (c) 1988 Massachusetts Institute of Technology @@ -1512,6 +1512,8 @@ MIT in each case. |# for-each-system! load-system! make-system + set-system/modification! + set-system/version! system/identification-string system/modification system/name