Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (163 - 165 of 1030)

Ticket Resolution Summary Owner Reporter
#231 duplicate Printing NSData objects does not obey *print-length* Gary Byers Ron Garret
Description

Printing NSData objects prints out the data contained within them, which is convenient, but it does not obey *print-length*. This gets particularly annoying when working with images, because if one accidentally prints a very large NSData object in the IDE (which often happens during error reporting when such an object has been passed in as an argument), Hemlock chokes, and the only way to recover is to kill the current listener and fire up a new one.

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

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