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
4afac75b
Commit
4afac75b
authored
Aug 18, 2003
by
pfdietz
Browse files
unwind-protect's unwind forms are an implicit progn.
parent
d6adf7df
Changes
1
Show whitespace changes
Inline
Side-by-side
ansi-tests/unwind-protect.lsp
View file @
4afac75b
...
...
@@ -101,3 +101,15 @@
10
(return-from done 'good)))
good)
;;; Executes all forms of the implicit progn
(deftest unwind-protect.11
(let ((x nil) (y nil))
(values
(block nil
(unwind-protect (return 'a)
(setf y 'c)
(setf x 'b)))
x y))
a b c)
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