From: Chris Hanson Date: Tue, 6 Jun 1989 22:43:13 +0000 (+0000) Subject: Add new operations `append-map', `append-map*', `append-map!', X-Git-Tag: 20090517-FFI~12024 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6ff0e820806d00c9b420c83254a5632e68701618;p=mit-scheme.git Add new operations `append-map', `append-map*', `append-map!', `append-map*!', and `1d-table/alist'. --- diff --git a/v7/src/runtime/runtime.pkg b/v7/src/runtime/runtime.pkg index cb5e7a7fb..e525dc7a2 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.37 1989/05/25 16:24:00 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.38 1989/06/06 22:42:36 cph Exp $ Copyright (c) 1988, 1989 Massachusetts Institute of Technology @@ -86,7 +86,8 @@ MIT in each case. |# (define-package (runtime 1d-property) (files "prop1d") (parent ()) - (export () 1d-table/get + (export () 1d-table/alist + 1d-table/get 1d-table/lookup 1d-table/put! 1d-table/remove! @@ -720,6 +721,10 @@ MIT in each case. |# alist? append append! + append-map + append-map! + append-map* + append-map*! assoc association-procedure assq diff --git a/v7/src/runtime/version.scm b/v7/src/runtime/version.scm index 9c95fa1cc..1213dab58 100644 --- a/v7/src/runtime/version.scm +++ b/v7/src/runtime/version.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.43 1989/05/21 17:15:32 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.44 1989/06/06 22:43:13 cph Exp $ Copyright (c) 1988, 1989 Massachusetts Institute of Technology @@ -45,7 +45,7 @@ MIT in each case. |# '())) (add-system! microcode-system) (add-event-receiver! event:after-restore snarf-microcode-version!) - (add-identification! "Runtime" 14 43)) + (add-identification! "Runtime" 14 44)) (define microcode-system) diff --git a/v8/src/runtime/runtime.pkg b/v8/src/runtime/runtime.pkg index 7d40f6a59..23f7290b3 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.37 1989/05/25 16:24:00 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.38 1989/06/06 22:42:36 cph Exp $ Copyright (c) 1988, 1989 Massachusetts Institute of Technology @@ -86,7 +86,8 @@ MIT in each case. |# (define-package (runtime 1d-property) (files "prop1d") (parent ()) - (export () 1d-table/get + (export () 1d-table/alist + 1d-table/get 1d-table/lookup 1d-table/put! 1d-table/remove! @@ -720,6 +721,10 @@ MIT in each case. |# alist? append append! + append-map + append-map! + append-map* + append-map*! assoc association-procedure assq