Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (247 - 249 of 1030)

Ticket Resolution Summary Owner Reporter
#181 fixed clozure.com down November 14, 2007 Gary Byers Gary Byers
Description

clozure.com (mail, ftp, http) had its internet connection go down on the evening of November 14; the ISP said that the upstream provider should respond within "a few hours".

#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.