Re: small issue in get-multipart-header
Gábor Melis <[email protected]> Mon, 20 Feb 2006 18:45:04 +0100
| Newsgroups | gmane.lisp.web |
|---|---|
| Message-ID | <[email protected]> |
On Monday 20 February 2006 13:40, Kamen TOMOV wrote: > Hi, > > (handler-case (get-multipart-header req) > (t () nil)) > > When evaluating I get: > > ; In: LAMBDA (PCL::.PV-CELL. PCL::.NEXT-METHOD-CALL. REQ) > > ; (KERNEL:FLOAT-WAIT) > ; Note: Deleting unreachable code. > ; > > ; Compilation unit finished. > ; 2 notes > > However, at runtime the error is handled properly. Is that correct > behaviour? You get the code deletion note for float-wait even for (handler-case t (t ())). It's normal on sbcl/x86. > > Thank you. Cheers, Gábor