From: Chris Hanson Date: Tue, 24 Mar 1992 23:32:17 +0000 (+0000) Subject: Add new file "compile.scm". X-Git-Tag: 20090517-FFI~9574 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=13195251d4f55f4126e026069ce04a8bf7ec56d9;p=mit-scheme.git Add new file "compile.scm". --- diff --git a/v7/src/edwin/decls.scm b/v7/src/edwin/decls.scm index 7ee7585f7..bd6070b12 100644 --- a/v7/src/edwin/decls.scm +++ b/v7/src/edwin/decls.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/decls.scm,v 1.32 1992/02/14 22:31:40 arthur Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/decls.scm,v 1.33 1992/03/24 23:31:57 cph Exp $ Copyright (c) 1989-92 Massachusetts Institute of Technology @@ -121,6 +121,7 @@ MIT in each case. |# "calias" "cinden" "comint" + "compile" "comtab" "comred" "curren" diff --git a/v7/src/edwin/edwin.ldr b/v7/src/edwin/edwin.ldr index b9f6dadeb..c413c484b 100644 --- a/v7/src/edwin/edwin.ldr +++ b/v7/src/edwin/edwin.ldr @@ -1,5 +1,5 @@ ;;; -*-Scheme-*- -;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/edwin.ldr,v 1.24 1992/02/14 22:30:26 arthur Exp $ +;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/edwin.ldr,v 1.25 1992/03/24 23:32:11 cph Exp $ ;;; program to load package contents ;;; **** This program (unlike most .ldr files) is not generated by a program. @@ -88,6 +88,7 @@ (load "c-mode" environment) (load "cinden" (->environment '(EDWIN C-INDENTATION))) (load "comint" environment) + (load "compile" environment) (load "debug" (->environment '(EDWIN DEBUGGER))) (load "dired" (->environment '(EDWIN DIRED))) (load "evlcom" environment) diff --git a/v7/src/edwin/edwin.pkg b/v7/src/edwin/edwin.pkg index d64fc8af0..9c567f4ce 100644 --- a/v7/src/edwin/edwin.pkg +++ b/v7/src/edwin/edwin.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/edwin.pkg,v 1.79 1992/03/13 10:48:29 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/edwin.pkg,v 1.80 1992/03/24 23:32:05 cph Exp $ Copyright (c) 1989-92 Massachusetts Institute of Technology @@ -73,6 +73,7 @@ MIT in each case. |# "basic" ; basic commands "bufcom" ; buffer commands "comint" ; command interpreter process stuff + "compile" ; compilation subprocess "evlcom" ; evaluation commands "filcom" ; file commands "fill" ; text fill commands diff --git a/v7/src/edwin/make.scm b/v7/src/edwin/make.scm index 3cdf6e86a..01c2a1bd2 100644 --- a/v7/src/edwin/make.scm +++ b/v7/src/edwin/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/make.scm,v 3.68 1992/03/13 10:53:26 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/make.scm,v 3.69 1992/03/24 23:32:17 cph Exp $ Copyright (c) 1989-92 Massachusetts Institute of Technology @@ -37,4 +37,4 @@ MIT in each case. |# (declare (usual-integrations)) (package/system-loader "edwin" '() 'QUERY) -(add-system! (make-system "Edwin" 3 68 '())) \ No newline at end of file +(add-system! (make-system "Edwin" 3 69 '())) \ No newline at end of file