;;; -*-Scheme-*-
;;;
-;;; $Id: intmod.scm,v 1.113 2001/02/27 17:49:36 cph Exp $
+;;; $Id: intmod.scm,v 1.114 2001/12/18 20:50:51 cph Exp $
;;;
;;; Copyright (c) 1986, 1989-2001 Massachusetts Institute of Technology
;;;
;;;
;;; 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.
;;;; Inferior REPL Mode
;;; Package: (edwin inferior-repl)
#f)
repl-buffer))))
(if (>= argument 16)
- (make-new (extend-ic-environment system-global-environment))
+ (make-new
+ (extend-interpreter-environment system-global-environment))
(or (and (< argument 4) (current-repl-buffer* buffer))
(make-new user-initial-environment))))))))
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.386 2001/12/18 20:44:13 cph Exp $
+$Id: runtime.pkg,v 14.387 2001/12/18 20:51:05 cph Exp $
Copyright (c) 1988-2001 Massachusetts Institute of Technology
environment-parent
environment-procedure-name
environment?
- extend-ic-environment
+ extend-interpreter-environment
ic-environment?
interpreter-environment?
make-null-interpreter-environment
#| -*-Scheme-*-
-$Id: uenvir.scm,v 14.44 2001/12/18 20:49:33 cph Exp $
+$Id: uenvir.scm,v 14.45 2001/12/18 20:50:59 cph Exp $
Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology
(system-pair-set-cdr! procedure null-environment)))
environment))
-(define (extend-ic-environment environment)
+(define (extend-interpreter-environment environment)
(if (not (interpreter-environment? environment))
- (illegal-environment environment 'EXTEND-IC-ENVIRONMENT))
+ (illegal-environment environment 'EXTEND-INTERPRETER-ENVIRONMENT))
(eval '(LET () (THE-ENVIRONMENT)) environment))
(define (ic-environment/lambda environment)