Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clim-tos
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
Container Registry
Model registry
Operate
Environments
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
Alastair Bridgewater
clim-tos
Commits
14bc02a6
Commit
14bc02a6
authored
7 years ago
by
Daniel Kochmański
Browse files
Options
Downloads
Patches
Plain Diff
cleanup: fix broken loop forms
parent
03fd0cc9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
homegrown/db-button.lisp
+2
-2
2 additions, 2 deletions
homegrown/db-button.lisp
with
2 additions
and
2 deletions
homegrown/db-button.lisp
+
2
−
2
View file @
14bc02a6
...
...
@@ -587,7 +587,7 @@ toggle button base. This way they can share the draw code.
do
(
loop
for
y
from
0
to
(
1-
original-height
)
do
(
setf
(
aref
intermediate-array
y
x
)
(
aref
original-array
y
x
))))
(
loop
for
x
from
(
1-
new-width
)
downto
(
-
new-width
center-x
)
for
old-x
from
(
1-
original-width
)
by
-1
for
old-x
from
(
1-
original-width
)
downto
(
-
original-width
center-x
)
do
(
loop
for
y
from
0
to
(
1-
original-height
)
do
(
setf
(
aref
intermediate-array
y
x
)
(
aref
original-array
y
old-x
))))
(
loop
for
x
from
(
1+
center-x
)
to
(
-
new-width
center-x
1
)
...
...
@@ -599,7 +599,7 @@ toggle button base. This way they can share the draw code.
do
(
loop
for
x
from
0
to
(
1-
new-width
)
do
(
setf
(
aref
final-array
y
x
)
(
aref
intermediate-array
y
x
))))
(
loop
for
y
from
(
1-
new-height
)
downto
(
-
new-height
center-y
)
for
old-y
from
(
1-
original-height
)
by
-1
for
old-y
from
(
1-
original-height
)
downto
(
-
original-height
center-y
)
do
(
loop
for
x
from
0
to
(
1-
new-width
)
do
(
setf
(
aref
final-array
y
x
)
(
aref
intermediate-array
old-y
x
))))
(
loop
for
y
from
(
1+
center-y
)
to
(
-
new-height
center-y
1
)
...
...
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