Custom Query (1030 matches)
Results (499 - 501 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #641 | fixed | DEFSTRUCT (:TYPE) + DEFTYPE results in bogus duplicate-type-definition warning | ||
| Description |
Straight from CLHS DEFSTRUCT dictionary entry (the description of the :TYPE option): ;; For example:
Compiling that, results in ;Compiling "/tmp/foo.lisp"... ;Compiler warnings for "/tmp/foo.lisp" : ; In an anonymous lambda form at position 60: Duplicate definitions of (TYPE QUUX), in this file ; In an anonymous lambda form at position 449: Duplicate definitions of (TYPE FOO), in this file The Ironclad library makes use of this feature. So it's a real-life annoyance. |
|||
| #642 | invalid | Call to WARN messes with pretty-printer | ||
| Description |
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. |
|||
| #643 | fixed | attachment test | ||
| Description |
testing attachments |
|||
