From: Chris Hanson Date: Thu, 9 Aug 2001 03:07:50 +0000 (+0000) Subject: Replace usage of ENVIRONMENT-LINK-NAME with new LINK-VARIABLES. X-Git-Tag: 20090517-FFI~2609 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=8ca70e560bc8561a734e4101c01e8391a770e9f5;p=mit-scheme.git Replace usage of ENVIRONMENT-LINK-NAME with new LINK-VARIABLES. --- diff --git a/v7/src/6001/edextra.scm b/v7/src/6001/edextra.scm index ad08a1651..92203aad2 100644 --- a/v7/src/6001/edextra.scm +++ b/v7/src/6001/edextra.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: edextra.scm,v 1.32 2000/12/01 06:41:21 cph Exp $ +$Id: edextra.scm,v 1.33 2001/08/09 03:07:29 cph Exp $ -Copyright (c) 1992-2000 Massachusetts Institute of Technology +Copyright (c) 1992-2001 Massachusetts Institute of Technology This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,7 +16,8 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. |# ;;;; 6.001: Edwin Extensions @@ -78,7 +79,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (kill-buffer buffer) (k unspecific)) (lambda () - (%insert-file (buffer-start buffer) pathname false))) + (%insert-file (buffer-start buffer) pathname #f))) (set-buffer-point! buffer (buffer-start buffer)) (select-buffer buffer)))))) (if hairy-floppy-stuff? @@ -88,7 +89,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. "Logout from the 6.001 Scheme system." () (lambda () - (fluid-let ((paranoid-exit? false)) + (fluid-let ((paranoid-exit? #f)) ((ref-command save-buffers-kill-scheme) #f)))) (define (restore-focus-to-editor) @@ -106,9 +107,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (else (error "Unsupported graphics type:" name))))) -(environment-link-name '(student pictures) - '(edwin) - 'restore-focus-to-editor) +(link-variables '(student pictures) 'restore-focus-to-editor + '(edwin) 'restore-focus-to-editor) (if (eq? 'UNIX microcode-id/operating-system) (load-edwin-library 'PRINT)) @@ -128,7 +128,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ((message-wrapper #f "Spooling") (lambda () (shell-command - false false false false + #f #f #f #f (string-append (->namestring (merge-pathnames "bin/print-given-x-window" student-root-directory)) @@ -141,7 +141,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ((message-wrapper #f "Click desired window") (lambda () (shell-command - false false false false + #f #f #f #f (string-append (->namestring (merge-pathnames "bin/print-pointed-x-window" student-root-directory)) @@ -381,22 +381,22 @@ option the file from the problem set will not be installed. (set! default-homedir-pathname (lambda () student-work-directory)) -(set! editor-can-exit? false) -(set! scheme-can-quit? false) -(set! paranoid-exit? true) +(set! editor-can-exit? #f) +(set! scheme-can-quit? #f) +(set! paranoid-exit? #t) -(set-variable! enable-transcript-buffer true) -(set-variable! evaluate-in-inferior-repl true) -(set-variable! repl-error-decision true) -(set-variable! version-control true) -(set-variable! trim-versions-without-asking true) +(set-variable! enable-transcript-buffer #t) +(set-variable! evaluate-in-inferior-repl #t) +(set-variable! repl-error-decision #t) +(set-variable! version-control #t) +(set-variable! trim-versions-without-asking #t) #| ;; No longer needed. (if (eq? 'UNIX microcode-id/operating-system) (set-variable! mail-header-function - (let ((default-reply-to false)) + (let ((default-reply-to #f)) (lambda (point) (let ((reply-to (prompt-for-string "Please enter an email address for replies" @@ -417,5 +417,5 @@ option the file from the problem set will not be installed. (cons (lambda (name) (find-file-noselect (merge-pathnames name student-work-directory) - true)) + #t)) (ref-variable select-buffer-not-found-hooks))) \ No newline at end of file diff --git a/v7/src/compiler/etc/disload.scm b/v7/src/compiler/etc/disload.scm index 78eb590fc..20f167f9c 100644 --- a/v7/src/compiler/etc/disload.scm +++ b/v7/src/compiler/etc/disload.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: disload.scm,v 1.8 1999/01/02 06:06:43 cph Exp $ +$Id: disload.scm,v 1.9 2001/08/09 03:06:55 cph Exp $ -Copyright (c) 1993, 1999 Massachusetts Institute of Technology +Copyright (c) 1993, 1999, 2001 Massachusetts Institute of Technology This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,7 +16,8 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. |# ;;;; Load the disassembler into a Scheme containing the compiler @@ -44,9 +45,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (compinfo (package/environment (find-package '(runtime compiler-info))))) (define (export name) - (environment-link-name global disenv name)) + (link-variables global name disenv name)) (define (import name) - (environment-link-name disenv compinfo name)) + (link-variables disenv name compinfo name)) (if (not (environment-bound? parenv 'addressing-granularity)) (local-assignment diff --git a/v7/src/swat/scheme/load.scm b/v7/src/swat/scheme/load.scm index 964aac16f..155442d16 100644 --- a/v7/src/swat/scheme/load.scm +++ b/v7/src/swat/scheme/load.scm @@ -28,10 +28,8 @@ (for-each (lambda (export) (local-assignment swat-env export 'UNASSIGNED) - (environment-link-name - (package/environment (find-package '())) - swat-env - export)) + (link-variables (package/environment (find-package '())) export + swat-env export)) ;; All of SWAT's exported names. This list need pruning '(*-alert-structure-size-* *-alert.function-*