Changeset 5413


Ignore:
Timestamp:
Oct 23, 2006, 3:42:05 PM (18 years ago)
Author:
Gary Byers
Message:

Use NORMALIZE-EXTERNAL-FORMAT in (SETF STREAM-EXTERNAL-FORMAT) methods.

File:
1 edited

Legend:

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

    r5409 r5413  
    301301
    302302(defmethod (setf stream-external-format) (new (s t))
    303   (check-type new 'external-format)
     303  (normalize-external-format (stream-domain s) new)
    304304  (report-bad-arg s 'stream))
    305305
    306306(defmethod (setf stream-external-format) (new (s t))
    307   (check-type new 'external-format)
     307  (normalize-external-format (stream-domain s) new)
    308308  (stream-external-format s))
    309309
     
    40894089    (unless (open-stream-p s)  (format out " ~s" :closed))))
    40904090
     4091
     4092                 
     4093
    40914094(defstruct (string-stream-ioblock (:include ioblock))
    40924095  string)
Note: See TracChangeset for help on using the changeset viewer.