Custom Query (1030 matches)
Results (601 - 603 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #769 | fixed | Multiple :constructor options in cl:defstruct | ||
| Description |
Hello. CCL does not accept multiple :CONSTRUCTOR options in DEFSTRUCT macro at the moment. i.e. (defstruct (my-struct (:constructor make-my-struct) (:constructor my-struct)))
This is an incompatibility with ANSI CL standard, which allows multiple constructor options: http://www.lispworks.com/documentation/HyperSpec/Body/m_defstr.htm |
|||
| #1061 | fixed | Multidimensional array reader syntax | ||
| Description |
The reader signals an error when the first sequence in the initial contents list isn't a list, but a vector, bitvector or string when parsing a 2-dimensional array literal: ? #2a("ab" #*01)
near position 14:
If the first sequence is a list, everything works fine: ? #2a((1 2) "ab" #*10) #2A((1 2) (#\a #\b) (1 0)) Creating the array with make-array also works fine: ? (make-array '(2 2) :initial-contents '("ab" #*10)) #2A((#\a #\b) (1 0)) |
|||
| #44 | fixed | Mouse clicks should have a Hemlock command binding. | ||
| Description |
Or otherwise be ignored. (Left mouse down is now passed to Hemlock so that it can terminate isearch, but Hemlock beeps on leftdown in other contexts. As anyone who had their speakers unmuted would have noticed.) |
|||
