Skip to content
GitLab
Projects
Groups
Snippets
/
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
bcff7e0a
Commit
bcff7e0a
authored
Mar 15, 2003
by
pfdietz
Browse files
Wrapped ignore-errors around defun of (setf ...) to avoid bombing the test suite.
parent
480c5efd
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/defun.lsp
View file @
bcff7e0a
...
...
@@ -40,11 +40,6 @@
(defun defun-test-fun-4 (x)
(car x))
(eval-when (load eval compile)
(ignore-errors
(defun (setf defun-test-fun-4) (newval x)
(return-from defun-test-fun-4 (setf (car x) newval)))))
(deftest defun.4
(let ((x (list 'a 'b)))
(values
...
...
@@ -53,6 +48,9 @@
c
(c b))
(defun (setf defun-test-fun-4) (newval x)
(return-from defun-test-fun-4 (setf (car x) newval)))
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment