Opened 12 years ago
Closed 12 years ago
#236 closed defect (fixed)
Bad error message for malformed forms
Reported by: | Stassats | Owned by: | ehuelsmann |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | compiler | Version: | |
Keywords: | Cc: | ||
Parent Tickets: |
Description
Evaluating (1 2 3) yields "The value 1 is not of type LIST." The fix for this is trivial, attached.
And compiling:
(compile nil '(lambda () (1 2 3)))
; Caught ERROR: ; COMPILE-FORM unhandled case (1 2 3) #<THREAD "interpreter" {1775831E}>: Debugger invoked on condition of type TYPE-ERROR The value #<EQUAL HASH-TABLE 0 entries, 11 buckets {23F3329A}> is not of type STRUCTURE-OBJECT.
Attachments (1)
Change History (4)
Changed 12 years ago by
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
comment:3 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
(In [14078]) Re #236: Solve the EVAL part of "Bad error message for malformed forms".