Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
212b3ba5
Commit
212b3ba5
authored
33 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fixed make-lexenv to deal with the new options slot.
parent
0008b5a6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/ir1util.lisp
+4
-3
4 additions, 3 deletions
compiler/ir1util.lisp
with
4 additions
and
3 deletions
compiler/ir1util.lisp
+
4
−
3
View file @
212b3ba5
...
@@ -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/1
1 16:29:13 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.
40
1991/07/1
8 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment