Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Jon Boone
ansi-test
Commits
7f39a2c1
Commit
7f39a2c1
authored
Jun 27, 2005
by
pfdietz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix fencepost error in labels.20
parent
7e697634
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ansi-tests/labels.lsp
ansi-tests/labels.lsp
+2
-2
No files found.
ansi-tests/labels.lsp
View file @
7f39a2c1
...
...
@@ -179,8 +179,8 @@
;;; labels works with the maximum number of arguments (if
;;; not too many.)
(deftest labels.20
(let* ((n (min lambda-parameters-limit 1024))
(vars (loop
for i from 1 to
n collect (gensym))))
(let* ((n (min
(1-
lambda-parameters-limit
)
1024))
(vars (loop
repeat
n collect (gensym))))
(eval
`(eqlt ,n
(labels ((%f ,vars (+ ,@ vars)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment