Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Jon Boone
ansi-test
Commits
c1269f3b
Commit
c1269f3b
authored
Nov 15, 2019
by
Michał Herda
🤔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DEFSETF.7A
parent
ed4a6bd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
data-and-control-flow/defsetf.lsp
data-and-control-flow/defsetf.lsp
+3
-4
No files found.
data-and-control-flow/defsetf.lsp
View file @
c1269f3b
...
...
@@ -160,8 +160,7 @@
;;; Test that defsetf works with places
(deftest defsetf.7a
(progn
(defsetf access-fn (x) (val-1 val-2)
`(list ,x ,val-1 ,val-2))
(eval (read-from-string
"(setf (access-fn 1) (values 2 3))")))
(eval '(defsetf access-fn (x) (val-1 val-2)
`(list ,x ,val-1 ,val-2)))
(eval '(setf (access-fn 1) (values 2 3))))
(1 2 3))
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