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
f8058fbe
Commit
f8058fbe
authored
Jun 07, 2004
by
pfdietz
Browse files
Check that the car of the backquote form is a symbol (as it usually is.)
parent
c37d18bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/print-cons.lsp
View file @
f8058fbe
...
...
@@ -104,6 +104,7 @@
(deftest print.backquote.random.6
(let ((x '`(,@a ,@b)))
(and (consp x)
(symbolp (car x))
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
...
...
@@ -112,6 +113,7 @@
(deftest print.backquote.random.7
(let ((x '`(,.a ,.b)))
(and (consp x)
(symbolp (car x))
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
...
...
@@ -120,6 +122,7 @@
(deftest print.backquote.random.8
(let ((x '`(,a ,b)))
(and (consp x)
(symbolp (car x))
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
...
...
@@ -128,6 +131,7 @@
(deftest print.backquote.random.9
(let ((x '`#(,a ,b)))
(and (consp x)
(symbolp (car x))
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
...
...
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