Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (391 - 393 of 1030)

Ticket Resolution Summary Owner Reporter
#205 fixed Cascade-like slow refresh when inserting lines in long files Gary Byers ds
Description

(This is using ClozureCL2007-12-03.dmg) Take a large file, such as lispmode.lisp, scroll somewhere near the end, then add some newlines between two definitions by hitting return a few times rapidly. As the blank lines appear, they wipe out the lines below them, which then take several seconds to re-appear in the expected position, in a cascade-like effect.

#208 fixed Clozure CL.app doesn't load ~/ccl-init.lisp Gary Byers Gary Byers
Description

It should.

(See also ticket:87)

#209 fixed No support for vectors with element-type FIXNUM in COMPILE-FILE/FASLOAD Gary Byers Gary Byers
Description

Even though arrays/vectors with element-type FIXNUM have existed in OpenMCL for over a year, neither COMPILE-FILE nor the fasl loader have any support for dumping/loading them when they appear as constants. The big ETYPECASE in FASL-DUMP-DISPATCH misses them and falls into a clause which tries to dump them as GVECTORs; whether that "works" or not depends on how the bits in the vector are (mis)interpreted as tagged objects, as in the example below.

(defconstant *matrix*
  (let ((matrix (make-array '(80) :element-type 'fixnum)))
    (dotimes (i 80 matrix)
      (setf (aref matrix i) (random 1000)))))

 (defun problem81 ()
  (let ((j 50))
    ;;(aref *matrix* 50) ; no problem
    (aref *matrix* j)   ; bad
    ))
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.