Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
ansi-test
Commits
73ac2b22
Commit
73ac2b22
authored
Sep 05, 2003
by
pfdietz
Browse files
Fixed another call-arguments-limit boundary error.
parent
c93f7842
Changes
1
Show whitespace changes
Inline
Side-by-side
ansi-tests/minus.lsp
View file @
73ac2b22
...
@@ -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 call-arguments-limit)
(loop for i from 1 to (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)
...
...
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