Custom Query (1030 matches)
Results (913 - 915 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1412 | fixed | BOGUS object when using REPLACE with adjustable vectors | ||
| Description |
Using Clozure Common Lisp Version 1.11-r16635 (LinuxX8664): (let ((x (make-array 3 :adjustable t :fill-pointer 0)))
(vector-push-extend 1 x)
(vector-push-extend 2 x)
(vector-push-extend 3 x)
(assert (equalp x #(1 2 3)))
(let* ((twice (make-array (* 2 (length x))
:adjustable t
:fill-pointer (* 2 (length x))
:initial-element nil)))
(assert (equalp twice #(nil nil nil nil nil nil)))
(replace twice x :start1 3)
;; TWICE should now be: #(NIL NIL NIL 1 2 3)
(format t "Twice: ~S" twice)))
leads to: Twice: > Error: Bug (probably): can't determine class of #<BOGUS object @ #x30200105879D> > While executing: CCL::NO-CLASS-ERROR, in process listener(1). |
|||
| #36 | fixed | Arrow Keys don't collapse the selection | ||
| Description |
When text is selected in a Hemlock window, typing any of the arrow keys should collapse the selection and move the cursor to the start or end of where the selection was (in the case of the left or right arrow) or move the cursor up or down a line (in the case of the up or down arrow). Currently typing arrow keys when text is selected extends or reduces the selection almost as if the shift key was being held down. |
|||
| #1181 | fixed | Apropos window broken | ||
| Description |
In Clozure Common Lisp Version 1.10-dev-r16074M-trunk Select Tools/Apropos... You will immediately be thrown into the Alt Console
1 > Tested on OS X 10.9.2 |
|||
