Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (991 - 993 of 1030)

Ticket Resolution Summary Owner Reporter
#329 fixed typep gives false negative for subclasses of standard-generic-function in some positions Gary Byers Stephen Compall
Description

Loading a file with userinit disabled in Version 1.2-r10579M-trunk (Linuxx8664) with the following forms:

(defclass my-generic-function () ()
  (:metaclass funcallable-standard-class))

(format t "In a toplevel form: ~S~%"
          (typep (make-instance 'my-generic-function) 'my-generic-function))

(let ()
  (format t "In a let: ~S~%"
          (typep (make-instance 'my-generic-function) 'my-generic-function)))

(funcall (compile nil '(lambda ()
                         (format t "In a compiled closure: ~S~%"
                                 (typep (make-instance 'my-generic-function)
                                        'my-generic-function)))))

Gives T, NIL, and NIL respectively, where I would expect all T.

As far as I can tell, this only happens for user-defined classes whose metaclass is funcallable-standard-class, whether or not subclassing standard-generic-function.

#203 fixed typing does not hide the cursor on Mac OS X Gary Byers Rainer Joswig
Description

using Clozure CL on Mac OS X 10.5.

On the Mac the mouse cursor gets hidden when the user types on the keyboard and gets shown again when the mouse is moved. Clozure CL does not hide the mouse cursor. It often gets in the way while typing.

Hiding the cursor would be useful, increases usability, slightly.

#606 fixed typo in ffi.xml Gary Byers Matt Claus
Description

12.3.2.7. %null-ptr [Macro]

Description

Equivalent to (%ptr-to-int 0).

should be (%int-to-ptr 0)

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