Custom Query (1030 matches)
Results (394 - 396 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1409 | moved | (quit) is broken? | ||
| Description |
Ocasionally, (quit) is broken. Instead of quit, CCL will hang infinitely. Steps to reproduce:
CCL will hang infinitely. OS: Windows 10 32-bit |
|||
| #1411 | notabug | GC bug when reading a file | ||
| Description |
I am using cl-csv to read in a large file, and for some reason there is a bug and it won't garbage collect. (defparameter +test-big-file+
(defun count-big-file ()
Takes up a lot of ram, and (gc) won't clear it. I have to kill the slime instance and restart it to reclaim up my ram. When I run the same code in SBCL it is properly garbage collected. |
|||
| #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). |
|||
