Ticket #642 (closed defect: invalid)
Call to WARN messes with pretty-printer
| Reported by: | trittweiler | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | ANSI CL Compliance | Version: | trunk |
| Keywords: | Cc: |
Description (last modified by rme) (diff)
Calling WARN messes with the pretty-printer.
CL-USER> (lisp-implementation-version)
"Version 1.4-RC1-r13031 (LinuxX8632)"
CL-USER> (setq *print-pretty* t)
T
CL-USER> (format t "~@<COMPILE-FILE failed while performing ~A on ~A.~@:>"
"#<COMPILE-OP (:FORCE T) #x150A26AE>"
"#<IRONCLAD-SOURCE-FILE \"ripemd-160\" #x14D18B46>")
COMPILE-FILE failed while performing #<COMPILE-OP (:FORCE T) #x150A26AE> on
#<IRONCLAD-SOURCE-FILE "ripemd-160" #x14D18B46>.
NIL
CL-USER> (warn "~@<COMPILE-FILE failed while performing ~A on ~A.~@:>"
"#<COMPILE-OP (:FORCE T) #x150A26AE>"
"#<IRONCLAD-SOURCE-FILE \"ripemd-160\" #x14D18B46>")
; Warning: COMPILE-FILE failed while performing
; #<COMPILE-OP (:FORCE T) #x150A26AE> on
; #<IRONCLAD-SOURCE-FILE "ripemd-160" #x14D18B46>.
; While executing: SWANK::EVAL-REGION, in process repl-thread(11).
NIL
As you can see, WARN somehow messes with pretty-printing.
Change History
Note: See
TracTickets for help on using
tickets.
