Skip to content
Snippets Groups Projects
Commit f1f1f1b8 authored by camm's avatar camm
Browse files

Avoid ~P escape with no arguments in ansi-tests/rt.lsp -- FIXME -- this should be made to work

parent e92e84f5
No related branches found
No related tags found
No related merge requests found
......@@ -260,7 +260,8 @@
~{~S~^~%~15t~}.~%"
(length r) r)))
(format t "~A" s))
(error () (format t "Actual value~P: #<error during printing>~%"))
(error () #+gcl (format t "Actual value: #<error during printing>~%")
#-gcl (format t "Actual value~P: #<error during printing>~%"))
)))))
(when (not (pend entry)) *test*))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment