Opened 14 years ago
Closed 14 years ago
#104 closed defect (fixed)
SET works with symbols defined with DEFCONSTANT
Reported by: | Mark Evenson | Owned by: | ehuelsmann |
---|---|---|---|
Priority: | major | Milestone: | 0.23 |
Component: | interpreter | Version: | 0.22 |
Keywords: | Cc: | ||
Parent Tickets: |
Description
Something is wonky about symbols defined with DEFCONSTANT:
CL-USER> (defconstant +xx+ nil) +XX+ CL-USER> +xx+ NIL CL-USER> (setf +xx+ 53) ; Evaluation aborted. CL-USER> (set (intern "+XX+") 42) 42 CL-USER> +xx+ 42
Change History (1)
comment:1 Changed 14 years ago by
Milestone: | unscheduled → 0.23 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.