Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (964 - 966 of 1030)

Ticket Resolution Summary Owner Reporter
#1302 fixed Building lisp-kernel fail in (rebuild-ccl :full t :force T) on p2
Description

Virgin new trunk by: svn co http://svn.clozure.com/publicsvn/openmcl/trunk/darwinx86/ccl downloads revision 16504.

Running ./dx86cl64 --no-init brings up Clozure Common Lisp Version 1.10-dev-r16089M-trunk (DarwinX8664)

(rebuild-ccl :full t :force T) crashes at Building lisp-kernel

transcript attached

#1303 fixed Typo in l1-unicode.lisp Paul Krueger
Description

I believe there is a typo in the (define-character-encoding :utf-32 ...) form in l1-unicode.lisp. Within it you find:

  :stream-encode-function
  #+ucs-4-stream-encode   <=== should be #' not #+
  :stream-decode-function
  #'ucs-4-stream-decode
  :vector-encode-function

I suspect there aren't many files in utf-32 format.

#1304 notabug let-binding / closure problem with trees Matt Piroglu
Description

Clozure Common Lisp Version 1.10-r16196 (DarwinX8664)

I just tried this example and it seems sub lists remain in new created closure, whereas they should be new values:

(defun closure-eg ()
  (let ((l1 '((a 0) (b 0))))
    (incf (second (assoc 'a l1)))
    l1))

run this function more than once, and the l1 binding is only shallow-recreated??

MY-PACKAGE> (closure-eg)
((A 1) (B 0))
MY-PACKAGE> (closure-eg)
((A 2) (B 0))
MY-PACKAGE> (closure-eg)
((A 3) (B 0))

the numbers in first list (A n) should always be 1, shouldn't they?

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.