Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (844 - 846 of 1030)

Ticket Resolution Summary Owner Reporter
#243 duplicate let bug Gary Byers Osei Poku
Description

{{{(let ((a 10))

(let ((b a)

(c (incf a)))

(format t "~A ~A ~A~%" a b c)))}}}

The following code should give 11 10 11, however openmcl produces 11 11 11.

#270 duplicate (setf values) is not supposed to flatten out the values Gary Byers gz
Description
? (let (a b) (setf (values (values a b)) (values 1 2)) (list a b))
(1 2)
? 

Should return (1 nil), by my reading of http://www.lispworks.com/documentation/HyperSpec/Body/05_abc.htm.

#357 duplicate SUBTAG-BYTES and weird element-types Gary Byers R. Matthew Emerson
Description

On 32-bit platforms, we see:

? (open #p"/dev/null" :direction :probe :element-type '(unsigned-byte 33))
> Error: Not an ivector subtag: 170
> While executing: SUBTAG-BYTES, in process listener(1).

The 170 is subtag-simple-vector. Maybe SUBTAG-BYTES should just punt somehow if it gets a non-ivector subtag? Maybe return NIL and deal with that in OPTIMAL-BUFFER-SIZE?

(From the test suite.)

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