Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (346 - 348 of 1030)

Ticket Resolution Summary Owner Reporter
#438 worksforme Newest slime doesn't work with 1.3 marco baringer gz
Description

From IRC:

<eslick> Is there a known version of slime that works with ccl 1.3? the latest fails with Condition: Module XREF was not provided by any function on *MODULE-PROVIDER-FUNCTIONS*.

#439 fixed Gray Streams malfunction Gary Byers David McClain
Description

(defclass ubyte-stream ()

())

(defmethod cl:stream-element-type ((stream ubyte-stream))

'(unsigned-byte 8))

;; --------------------------------------------------------------------------------

(defclass ubyte-output-stream (ccl:fundamental-binary-output-stream ubyte-stream)

((arr :accessor uos-arr :initform (make-array 0

:element-type '(unsigned-byte 8) :adjustable t :fill-pointer t))))

(defun make-ubyte-output-stream ()

(make-instance '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

OUTPUT-STREAM CCL::BINARY-STREAM).

[Condition of type TYPE-ERROR]

Yet, if I do the following:

(typep s '(and output-stream ccl::binary-stream)) ==> t

#440 worksforme CCL:REBUILD-CCL fails on OS X due to untranslated and embedded logical pathnames R. Matthew Emerson David McClain
Description

Attempting to regenerate CCL:

(ccl:rebuild-ccl :full t)

==> Rebuilding Clozure Common Lisp using Version 1.3-RC1-r11719M (DarwinX8632)

Error: Invalid pathname : "ccl:". While executing: CWD, in process listener(1). Type :POP to abort, :R for a list of available restarts. Type :? for other options.

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