Skip to content
Snippets Groups Projects
Commit 212b3ba5 authored by wlott's avatar wlott
Browse files

Fixed make-lexenv to deal with the new options slot.

parent 0008b5a6
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.39 1991/07/11 16:29:13 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.40 1991/07/18 02:11:56 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -349,7 +349,7 @@ ...@@ -349,7 +349,7 @@
;;; ;;;
(defun make-lexenv (&key (default *lexical-environment*) (defun make-lexenv (&key (default *lexical-environment*)
functions variables blocks tags type-restrictions functions variables blocks tags type-restrictions
inlines inlines options
(lambda (lexenv-lambda default)) (lambda (lexenv-lambda default))
(cleanup (lexenv-cleanup default)) (cleanup (lexenv-cleanup default))
(cookie (lexenv-cookie default)) (cookie (lexenv-cookie default))
...@@ -366,7 +366,8 @@ ...@@ -366,7 +366,8 @@
(frob tags lexenv-tags) (frob tags lexenv-tags)
(frob type-restrictions lexenv-type-restrictions) (frob type-restrictions lexenv-type-restrictions)
(frob inlines lexenv-inlines) (frob inlines lexenv-inlines)
lambda cleanup cookie interface-cookie))) lambda cleanup cookie interface-cookie
(frob options lexenv-options))))
;;; MAKE-INTERFACE-COOKIE -- Interface ;;; MAKE-INTERFACE-COOKIE -- Interface
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment