Changeset 4917


Ignore:
Timestamp:
Jul 28, 2006, 12:16:39 AM (18 years ago)
Author:
Gary Byers
Message:

Pass :CHARACTER-P T to MAKE-FD-STREAM.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-sockets.lisp

    r4900 r4917  
    322322(defmethod select-stream-class ((class tcp-stream) in-p out-p char-p)
    323323  (declare (ignore char-p)) ; TODO: is there any real reason to care about this?
     324  ;; Yes, in general.  There is.
    324325  (assert (and in-p out-p) () "Non-bidirectional tcp stream?")
    325326  'tcp-stream)
     
    677678                    :direction :io
    678679                    :element-type element-type
    679                     :sharing sharing)))
     680                    :sharing sharing
     681                    :character-p t)))
    680682
    681683(defun make-file-socket-stream (fd &key format eol (class 'file-socket-stream)  sharing &allow-other-keys)
     
    690692                    :direction :io
    691693                    :element-type element-type
    692                     :sharing sharing)))
     694                    :sharing sharing
     695                    :character-p t)))
    693696
    694697(defun make-tcp-listener-socket (fd &rest keys &key backlog &allow-other-keys)
Note: See TracChangeset for help on using the changeset viewer.