From: Guillermo J. Rozas Date: Sat, 8 Jan 1994 21:06:17 +0000 (+0000) Subject: Rename runtim.* to runtime.* X-Git-Tag: 20090517-FFI~7333 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=2bc6ea7c9ab3f9f3235c34252dbce344f8ea5845;p=mit-scheme.git Rename runtim.* to runtime.* --- diff --git a/v7/src/compiler/machines/C/compiler.pkg b/v7/src/compiler/machines/C/compiler.pkg index 4a89f9afa..a3a5d3908 100644 --- a/v7/src/compiler/machines/C/compiler.pkg +++ b/v7/src/compiler/machines/C/compiler.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: compiler.pkg,v 1.7 1993/12/09 03:23:53 gjr Exp $ +$Id: compiler.pkg,v 1.8 1994/01/08 21:06:17 gjr Exp $ Copyright (c) 1992-1993 Massachusetts Institute of Technology @@ -34,7 +34,7 @@ MIT in each case. |# ;;;; Compiler Packaging -(global-definitions "../runtime/runtim") +(global-definitions "../runtime/runtime") (define-package (compiler) (files "base/switch" diff --git a/v7/src/cref/cref.pkg b/v7/src/cref/cref.pkg index 79fe17d8e..792532316 100644 --- a/v7/src/cref/cref.pkg +++ b/v7/src/cref/cref.pkg @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: cref.pkg,v 1.5 1993/10/11 23:31:40 cph Exp $ +$Id: cref.pkg,v 1.6 1994/01/08 21:04:30 gjr Exp $ -Copyright (c) 1988-93 Massachusetts Institute of Technology +Copyright (c) 1988-1994 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -34,7 +34,7 @@ MIT in each case. |# ;;;; CREF Packaging -(global-definitions "../runtime/runtim") +(global-definitions "../runtime/runtime") (define-package (cross-reference) (files "mset" diff --git a/v7/src/edwin/edwin.pkg b/v7/src/edwin/edwin.pkg index 1bf0f0f79..f20ea537a 100644 --- a/v7/src/edwin/edwin.pkg +++ b/v7/src/edwin/edwin.pkg @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: edwin.pkg,v 1.141 1993/10/26 21:23:00 cph Exp $ +$Id: edwin.pkg,v 1.142 1994/01/08 21:04:48 gjr Exp $ -Copyright (c) 1989-1993 Massachusetts Institute of Technology +Copyright (c) 1989-1994 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -34,7 +34,7 @@ MIT in each case. |# ;;;; Edwin Packaging -(global-definitions "../runtime/runtim") +(global-definitions "../runtime/runtime") (define-package (edwin) (file-case os-type diff --git a/v7/src/runtime/make.scm b/v7/src/runtime/make.scm index 142fad482..9fd8062b5 100644 --- a/v7/src/runtime/make.scm +++ b/v7/src/runtime/make.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: make.scm,v 14.50 1993/11/18 00:47:19 cph Exp $ +$Id: make.scm,v 14.51 1994/01/08 21:02:52 gjr Exp $ -Copyright (c) 1988-93 Massachusetts Institute of Technology +Copyright (c) 1988-1994 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -325,7 +325,7 @@ MIT in each case. |# (car names)) (loop (cdr names))))) (package/add-child! system-global-package 'PACKAGE environment-for-package) -(eval (fasload "runtim.bcon" #f) system-global-environment) +(eval (fasload "runtime.bcon" #f) system-global-environment) ;;; Global databases. Load, then initialize. (let ((files1 @@ -371,11 +371,11 @@ MIT in each case. |# ;; Note: The following code needs MAP* and MEMBER-PROCEDURE ;; from runtime/list. Fortunately that file has already been loaded. - ((eval (fasload "runtim.bldr" #f) system-global-environment) + ((eval (fasload "runtime.bldr" #f) system-global-environment) (let ((to-avoid (cons "packag" - (map* (if (file-exists? "runtim.bad") - (fasload "runtim.bad" #f) + (map* (if (file-exists? "runtime.bad") + (fasload "runtime.bad" #f) '()) car (append files1 files2)))) diff --git a/v7/src/runtime/runtime.sf b/v7/src/runtime/runtime.sf index deb28f591..8854a6254 100644 --- a/v7/src/runtime/runtime.sf +++ b/v7/src/runtime/runtime.sf @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.sf,v 14.8 1992/05/12 13:43:47 mhwu Exp $ +$Id: runtime.sf,v 14.9 1994/01/08 21:03:38 gjr Exp $ -Copyright (c) 1988-92 Massachusetts Institute of Technology +Copyright (c) 1988-1994 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -39,8 +39,8 @@ MIT in each case. |# (if (not (name->package '(CROSS-REFERENCE))) (with-working-directory-pathname "../cref" (lambda () (load "make")))) -(cref/generate-constructors "runtim") -(sf "runtim.con" "runtim.bcon") -(sf "runtim.ldr" "runtim.bldr") -(if (file-exists? "runtim.avd") - (fasdump (read-file "runtim.avd") "runtim.bad")) \ No newline at end of file +(cref/generate-constructors "runtime") +(sf "runtime.con" "runtime.bcon") +(sf "runtime.ldr" "runtime.bldr") +(if (file-exists? "runtime.avd") + (fasdump (read-file "runtime.avd") "runtime.bad")) \ No newline at end of file diff --git a/v7/src/sf/sf.pkg b/v7/src/sf/sf.pkg index 6b702b957..d787c517d 100644 --- a/v7/src/sf/sf.pkg +++ b/v7/src/sf/sf.pkg @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: sf.pkg,v 4.9 1993/08/03 03:09:48 gjr Exp $ +$Id: sf.pkg,v 4.10 1994/01/08 21:04:09 gjr Exp $ -Copyright (c) 1987-1993 Massachusetts Institute of Technology +Copyright (c) 1987-1994 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -34,7 +34,7 @@ MIT in each case. |# ;;;; SF Packaging -(global-definitions "../runtime/runtim") +(global-definitions "../runtime/runtime") (define-package (scode-optimizer) (files "lsets" diff --git a/v8/src/runtime/make.scm b/v8/src/runtime/make.scm index 142fad482..9fd8062b5 100644 --- a/v8/src/runtime/make.scm +++ b/v8/src/runtime/make.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: make.scm,v 14.50 1993/11/18 00:47:19 cph Exp $ +$Id: make.scm,v 14.51 1994/01/08 21:02:52 gjr Exp $ -Copyright (c) 1988-93 Massachusetts Institute of Technology +Copyright (c) 1988-1994 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -325,7 +325,7 @@ MIT in each case. |# (car names)) (loop (cdr names))))) (package/add-child! system-global-package 'PACKAGE environment-for-package) -(eval (fasload "runtim.bcon" #f) system-global-environment) +(eval (fasload "runtime.bcon" #f) system-global-environment) ;;; Global databases. Load, then initialize. (let ((files1 @@ -371,11 +371,11 @@ MIT in each case. |# ;; Note: The following code needs MAP* and MEMBER-PROCEDURE ;; from runtime/list. Fortunately that file has already been loaded. - ((eval (fasload "runtim.bldr" #f) system-global-environment) + ((eval (fasload "runtime.bldr" #f) system-global-environment) (let ((to-avoid (cons "packag" - (map* (if (file-exists? "runtim.bad") - (fasload "runtim.bad" #f) + (map* (if (file-exists? "runtime.bad") + (fasload "runtime.bad" #f) '()) car (append files1 files2))))