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
f9196531
Commit
f9196531
authored
35 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
In FIND-ORIGINAL-SOURCE, moved the exit test to the head of the loop so that we
don't lose when we want the whole top-level form.
parent
89c20a88
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/ir1util.lisp
+1
-2
1 addition, 2 deletions
compiler/ir1util.lisp
with
1 addition
and
2 deletions
compiler/ir1util.lisp
+
1
−
2
View file @
f9196531
...
@@ -1085,6 +1085,7 @@
...
@@ -1085,6 +1085,7 @@
(
let
((
form
root
)
(
let
((
form
root
)
(
current
(
rest
rpath
)))
(
current
(
rest
rpath
)))
(
loop
(
loop
(
when
(
null
current
)
(
return
))
(
let
((
head
(
first
form
)))
(
let
((
head
(
first
form
)))
(
when
(
symbolp
head
)
(
when
(
symbolp
head
)
(
let
((
name
(
symbol-name
head
)))
(
let
((
name
(
symbol-name
head
)))
...
@@ -1099,8 +1100,6 @@
...
@@ -1099,8 +1100,6 @@
(
car
next
)
(
car
next
)
next
))))
next
))))
(
context
(
list
head
)))))))
(
context
(
list
head
)))))))
(
when
(
null
current
)
(
return
))
(
setq
form
(
nth
(
pop
current
)
form
)))
(
setq
form
(
nth
(
pop
current
)
form
)))
(
cond
((
context
)
(
cond
((
context
)
...
...
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