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
38914db1
Commit
38914db1
authored
32 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Eval %in-package directly instead of expecting the eval-when to work,
because it doesn't.
parent
064dc592
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/main.lisp
+5
-4
5 additions, 4 deletions
compiler/main.lisp
with
5 additions
and
4 deletions
compiler/main.lisp
+
5
−
4
View file @
38914db1
...
@@ -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/main.lisp,v 1.
59
1992/05/1
5 17:39
:0
0
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.
60
1992/05/1
6 01:11
:0
7
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -987,10 +987,11 @@
...
@@ -987,10 +987,11 @@
(
if
(
atom
form
)
(
if
(
atom
form
)
(
convert-and-maybe-compile
form
path
)
(
convert-and-maybe-compile
form
path
)
(
case
(
car
form
)
(
case
(
car
form
)
((
make-package
old-in-package
shadow
shadowing-import
export
((
make-package
shadow
shadowing-import
export
unexport
use-package
unuse-package
import
)
unexport
use-package
unuse-package
import
old-in-package
%in-package
)
(
process-cold-load-form
form
path
t
))
(
process-cold-load-form
form
path
t
))
((
error
cerror
break
signal
%in-package
)
((
error
cerror
break
signal
)
(
process-cold-load-form
form
path
nil
))
(
process-cold-load-form
form
path
nil
))
((
eval-when
)
((
eval-when
)
(
unless
(
>=
(
length
form
)
2
)
(
unless
(
>=
(
length
form
)
2
)
...
...
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