Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (508 - 510 of 1030)

Ticket Resolution Summary Owner Reporter
#371 fixed permissions and GET-DESCRIPTOR-FOR R. Matthew Emerson R. Matthew Emerson
Description

When the lisp's current directory is not writable, GET-DESCRIPTOR-FOR can fail.

If OBJECT is a stream, then the function tries to create a temporary file in the current directory. It should create the temporary file in /tmp (or whatever).

#373 fixed x86 ports: invalid numerical comparisons Gary Byers Eric Marsden
Description

Incorrect code seems to be generated for comparisons with a bignum.

Welcome to Clozure Common Lisp Version 1.3-dev-r11281M  (LinuxX8632)!
? (defun tax (income)
    (declare (type (integer 0 1000000) income))
    (if (> income 1000000000) 1 0))
TAX
? (tax 10)
1
#374 fixed struct accessors are incorrect with struct option (:type (vector single-float)) Gary Byers thomas weidner
Description

Hi, i came across the following when trying to do some maths with clozure:

(defstruct (foo (:type (vector single-float))) 
  (x 0s0 :type single-float) 
  (y 0s0 :type single-float))

(defun bar (v) 
  (foo-y v))

(bar (make-foo :x 1s0 :y 1s0))
;; => 1.0907007E-40

i think the code is correct,so this is a ccl bug.

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