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
019b5b29
Commit
019b5b29
authored
Jan 27, 2003
by
pfdietz
Browse files
Fixed potential safety declaration problem in eval-ed form.
parent
719ba344
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/merge.lsp
View file @
019b5b29
...
...
@@ -486,7 +486,9 @@
;;; Tests of error situations
(deftest merge.error.1
(handler-case (eval '(merge 'symbol (list 1 2 3) (list 4 5 6) #'<))
(handler-case (eval
'(locally (declare (optimize (safety 3)))
(merge 'symbol (list 1 2 3) (list 4 5 6) #'<)))
(error () :caught))
:caught)
...
...
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