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
e90c7cc4
Commit
e90c7cc4
authored
Sep 01, 2003
by
pfdietz
Browse files
Fixed silly extra args in error format statement.
parent
379e792f
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/reader-test.lsp
View file @
e90c7cc4
...
...
@@ -146,8 +146,9 @@
(unless (and (symbolp sym)
(eql nread (+ 4 actual-len))
(string-equal s2 (symbol-name sym)))
(format t "Symbol read failed: ~S (~S) read as ~S~%"
actual-string s2 sym :readably t)
(let ((*print-readably* t))
(format t "Symbol read failed: ~S (~S) read as ~S~%"
actual-string s2 sym))
t)))))))
(deftest read-symbol.9
...
...
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