Custom Query (1030 matches)
Results (976 - 978 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1171 | notabug | streams in Listener when launched from slime | ||
| Description |
When launching the Lisp IDE from slime (require :cocoa), the GUI listener uses swank output streams, instead of the Listener window. This is due to missing bindings in make-mcl-listener-process. Adding: (let ((*standard-input* input-stream)
(*standard-output* output-stream)
(*error-output* output-stream)
(*trace-output* output-stream)
(*terminal-io*
(if echoing
(make-echoing-two-way-stream
input-stream output-stream)
(make-two-way-stream
input-stream output-stream)))
(*query-io* *terminal-io*)
(*debug-io* *terminal-io*))
makes it work as expected. |
|||
| #374 | fixed | struct accessors are incorrect with struct option (:type (vector single-float)) | ||
| 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. |
|||
| #278 | fixed | subtypep '(function (t) t) 'function returns false | ||
| Description |
? (subtypep '(function (t) t) 'function) NIL T |
|||
Note:
See TracQuery
for help on using queries.
