Custom Query (1030 matches)
Results (322 - 324 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #527 | fixed | Glut examples in cl-opengl cause "Exception on foreign stack" in Win32 | ||
| Description |
When running (cl-glut-examples:gears), an exception occurs, and the kernel debugger is invoked.
|
|||
| #550 | fixed | Goto Definition (meta-.) should find the current version of function | ||
| Description |
If there are multiple versions of a function definition in a file, Meta-. currently leads to the first occurrence. It should instead find the valid (current) version of the function (the one that is evaluated last). This is oftentimes (but not always) the last version in the buffer. |
|||
| #439 | fixed | Gray Streams malfunction | ||
| Description |
(defclass ubyte-stream ()
(defmethod cl:stream-element-type ((stream ubyte-stream))
;; -------------------------------------------------------------------------------- (defclass ubyte-output-stream (ccl:fundamental-binary-output-stream ubyte-stream)
(defun make-ubyte-output-stream ()
Now try: (defparameter s (make-ubyte-output-stream)) (write-byte 15 s) -->> boom! value #<UBYTE-OUTPUT-STREAM #x9224AEE> is not of the expected type (AND
Yet, if I do the following: (typep s '(and output-stream ccl::binary-stream)) ==> t |
|||
