Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ansi-test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Mark Evenson
ansi-test
Commits
b6d6871a
Commit
b6d6871a
authored
20 years ago
by
pfdietz
Browse files
Options
Downloads
Patches
Plain Diff
Fixed subtract.3, which was calling - with CALL-ARGUMENTS-LIMIT arguments
parent
71d68174
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ansi-tests/minus.lsp
+1
-1
1 addition, 1 deletion
ansi-tests/minus.lsp
with
1 addition
and
1 deletion
ansi-tests/minus.lsp
+
1
−
1
View file @
b6d6871a
...
@@ -122,7 +122,7 @@
...
@@ -122,7 +122,7 @@
(deftest subtract.3
(deftest subtract.3
(let ((args nil))
(let ((args nil))
(loop for i from 1
to
(min 256 (1- call-arguments-limit))
(loop for i from 1
below
(min 256 (1- call-arguments-limit))
do (push 1 args)
do (push 1 args)
always (eql (apply #'- 1000 args) (- 1000 i))))
always (eql (apply #'- 1000 args) (- 1000 i))))
t)
t)
...
...
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